OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:registerprotocolhandler
(Results
1 - 6
of
6
) sorted by null
/external/webkit/WebCore/page/
Navigator.idl
61
void
registerProtocolHandler
(in DOMString scheme, in DOMString url, in DOMString title)
Navigator.h
79
void
registerProtocolHandler
(const String& scheme, const String& url, const String& title, ExceptionCode& ec);
Chrome.h
124
void
registerProtocolHandler
(const String& scheme, const String& baseURL, const String& url, const String& title);
Navigator.cpp
250
void Navigator::
registerProtocolHandler
(const String& scheme, const String& url, const String& title, ExceptionCode& ec)
268
page->chrome()->
registerProtocolHandler
(scheme, baseURL, url, m_frame->displayStringModifiedByEncoding(title));
Chrome.cpp
317
void Chrome::
registerProtocolHandler
(const String& scheme, const String& baseURL, const String& url, const String& title)
319
m_client->
registerProtocolHandler
(scheme, baseURL, url, title);
ChromeClient.h
130
virtual void
registerProtocolHandler
(const String&, const String&, const String&, const String&) { }
Completed in 1380 milliseconds