Home
last modified time | relevance | path

Searched refs:ProtocolHandler (Results 1 – 7 of 7) sorted by relevance

/external/chromium/chrome/browser/custom_handlers/
Dprotocol_handler.cc10 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 ==()
Dprotocol_handler_registry.cc23 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()
Dprotocol_handler_registry.h34 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);
Dprotocol_handler.h17 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,
Dregister_protocol_handler_infobar_delegate.h13 class ProtocolHandler; variable
23 ProtocolHandler* handler);
40 ProtocolHandler* handler_;
Dregister_protocol_handler_infobar_delegate.cc15 ProtocolHandler* handler) in RegisterProtocolHandlerInfoBarDelegate()
40 ProtocolHandler* old_handler = registry_->GetHandlerFor(handler_->protocol()); in GetMessageText()
/external/chromium/chrome/browser/ui/tab_contents/
Dtab_contents_wrapper.cc295 ProtocolHandler* handler = in OnRegisterProtocolHandler()
296 ProtocolHandler::CreateProtocolHandler(protocol, url, title); in OnRegisterProtocolHandler()