OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsHandledProtocol
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/android_webview/browser/net/
aw_url_request_job_factory.cc
25
bool AwURLRequestJobFactory::
IsHandledProtocol
(
52
// NOTE(joth): See the assumption in
IsHandledProtocol
above.
53
if (net::URLRequest::
IsHandledProtocol
(scheme))
/external/chromium_org/net/url_request/
protocol_intercept_job_factory.cc
33
bool ProtocolInterceptJobFactory::
IsHandledProtocol
(
35
return job_factory_->
IsHandledProtocol
(scheme);
url_request_job_factory_impl.cc
52
bool URLRequestJobFactoryImpl::
IsHandledProtocol
(
64
return
IsHandledProtocol
(url.scheme());
url_request.cc
532
bool URLRequest::
IsHandledProtocol
(const std::string& scheme) {
543
return
IsHandledProtocol
(url.scheme());
[
all
...]
/external/chromium/net/url_request/
url_request.cc
311
bool URLRequest::
IsHandledProtocol
(const std::string& scheme) {
322
return
IsHandledProtocol
(url.scheme());
/external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry.cc
77
bool
IsHandledProtocol
(const std::string& scheme) const;
117
bool ProtocolHandlerRegistry::IOThreadDelegate::
IsHandledProtocol
(
193
bool ProtocolHandlerRegistry::JobInterceptorFactory::
IsHandledProtocol
(
196
return io_thread_delegate_->
IsHandledProtocol
(scheme) ||
197
job_factory_->
IsHandledProtocol
(scheme);
204
io_thread_delegate_->
IsHandledProtocol
(url.scheme())) ||
280
return ProfileIOData::
IsHandledProtocol
(protocol);
607
bool ProtocolHandlerRegistry::
IsHandledProtocol
(
638
if (!
IsHandledProtocol
(handler.protocol())) {
/external/chromium_org/chrome/browser/profiles/
profile_io_data.cc
657
bool ProfileIOData::
IsHandledProtocol
(const std::string& scheme) {
681
return net::URLRequest::
IsHandledProtocol
(scheme);
691
return
IsHandledProtocol
(url.scheme());
[
all
...]
Completed in 231 milliseconds