Searched refs:ProtocolHandler (Results 1 – 7 of 7) sorted by relevance
/external/chromium/chrome/browser/custom_handlers/ |
D | protocol_handler.cc | 10 ProtocolHandler::ProtocolHandler(const std::string& protocol, in ProtocolHandler() function in ProtocolHandler 18 ProtocolHandler* ProtocolHandler::CreateProtocolHandler( in CreateProtocolHandler() 24 return new ProtocolHandler(lower_protocol, url, title); in CreateProtocolHandler() 27 ProtocolHandler* ProtocolHandler::CreateProtocolHandler( in CreateProtocolHandler() 34 return ProtocolHandler::CreateProtocolHandler(protocol, GURL(url), title); in CreateProtocolHandler() 37 GURL ProtocolHandler::TranslateUrl(const GURL& url) { in TranslateUrl() 44 Value* ProtocolHandler::Encode() { in Encode() 52 bool ProtocolHandler::operator==(const ProtocolHandler &other) const { in operator ==()
|
D | protocol_handler_registry.cc | 23 ProtocolHandler* handler) { in RegisterProtocolHandler() 53 ProtocolHandler* handler = ProtocolHandler::CreateProtocolHandler(value); in RegisterHandlerFromValue() 65 ProtocolHandler* ProtocolHandlerRegistry::GetHandlerFor( in GetHandlerFor() 78 const ProtocolHandler* handler) const { in IsAlreadyRegistered() 79 ProtocolHandler* currentHandler = GetHandlerFor(handler->protocol()); in IsAlreadyRegistered() 92 ProtocolHandler* handler = GetHandlerFor(request->url().scheme()); in MaybeCreateJob() 120 ProtocolHandler* handler) { in OnAcceptRegisterProtocolHandler() 126 ProtocolHandler* handler) { in OnDenyRegisterProtocolHandler()
|
D | protocol_handler_registry.h | 34 void OnAcceptRegisterProtocolHandler(ProtocolHandler* handler); 37 void OnDenyRegisterProtocolHandler(ProtocolHandler* handler); 46 ProtocolHandler* GetHandlerFor(const std::string& scheme) const; 53 bool IsAlreadyRegistered(const ProtocolHandler* handler) const; 68 typedef std::map<std::string, ProtocolHandler*> ProtocolHandlerMap; 78 void RegisterProtocolHandler(ProtocolHandler* handler);
|
D | protocol_handler.h | 17 class ProtocolHandler { 19 static ProtocolHandler* CreateProtocolHandler(const std::string& protocol, 22 static ProtocolHandler* CreateProtocolHandler(const DictionaryValue* value); 35 bool operator==(const ProtocolHandler &other) const; 38 ProtocolHandler(const std::string& protocol,
|
D | register_protocol_handler_infobar_delegate.h | 13 class ProtocolHandler; variable 23 ProtocolHandler* handler); 40 ProtocolHandler* handler_;
|
D | register_protocol_handler_infobar_delegate.cc | 15 ProtocolHandler* handler) in RegisterProtocolHandlerInfoBarDelegate() 40 ProtocolHandler* old_handler = registry_->GetHandlerFor(handler_->protocol()); in GetMessageText()
|
/external/chromium/chrome/browser/ui/tab_contents/ |
D | tab_contents_wrapper.cc | 295 ProtocolHandler* handler = in OnRegisterProtocolHandler() 296 ProtocolHandler::CreateProtocolHandler(protocol, url, title); in OnRegisterProtocolHandler()
|