/external/chromium_org/chrome/browser/custom_handlers/ |
D | protocol_handler_registry_unittest.cc | 70 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE { in IsHandledProtocol() function in __anonacb7ce690111::FakeURLRequestJobFactory 88 ASSERT_EQ(expected, interceptor->IsHandledProtocol(scheme)); in AssertWillHandleIO() 414 ASSERT_FALSE(registry()->IsHandledProtocol("test")); in TEST_F() 416 ASSERT_TRUE(registry()->IsHandledProtocol("test")); in TEST_F() 422 ASSERT_FALSE(registry()->IsHandledProtocol("test")); in TEST_F() 424 ASSERT_TRUE(registry()->IsHandledProtocol("test")); in TEST_F() 430 ASSERT_FALSE(registry()->IsHandledProtocol("test")); in TEST_F() 474 ASSERT_TRUE(registry()->IsHandledProtocol("test")); in TEST_F() 478 ASSERT_TRUE(registry()->IsHandledProtocol("test")); in TEST_F() 527 ASSERT_TRUE(registry()->IsHandledProtocol("test")); in TEST_F() [all …]
|
D | protocol_handler_registry.cc | 77 bool IsHandledProtocol(const std::string& scheme) const; 117 bool ProtocolHandlerRegistry::IOThreadDelegate::IsHandledProtocol( in IsHandledProtocol() function in ProtocolHandlerRegistry::IOThreadDelegate 193 bool ProtocolHandlerRegistry::JobInterceptorFactory::IsHandledProtocol( in IsHandledProtocol() function in ProtocolHandlerRegistry::JobInterceptorFactory 196 return io_thread_delegate_->IsHandledProtocol(scheme) || in IsHandledProtocol() 197 job_factory_->IsHandledProtocol(scheme); in IsHandledProtocol() 204 io_thread_delegate_->IsHandledProtocol(url.scheme())) || in IsHandledURL() 280 return ProfileIOData::IsHandledProtocol(protocol); in IsExternalHandlerRegistered() 607 bool ProtocolHandlerRegistry::IsHandledProtocol( in IsHandledProtocol() function in ProtocolHandlerRegistry 638 if (!IsHandledProtocol(handler.protocol())) { in RemoveHandler()
|
D | protocol_handler_registry.h | 115 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE; 213 bool IsHandledProtocol(const std::string& scheme) const;
|
D | protocol_handler_registry_browsertest.cc | 83 ASSERT_TRUE(registry->IsHandledProtocol(protocol)); in AddProtocolHandler()
|
/external/chromium_org/net/url_request/ |
D | protocol_intercept_job_factory.cc | 33 bool ProtocolInterceptJobFactory::IsHandledProtocol( in IsHandledProtocol() function in net::ProtocolInterceptJobFactory 35 return job_factory_->IsHandledProtocol(scheme); in IsHandledProtocol()
|
D | url_request_job_factory_impl.cc | 52 bool URLRequestJobFactoryImpl::IsHandledProtocol( in IsHandledProtocol() function in net::URLRequestJobFactoryImpl 64 return IsHandledProtocol(url.scheme()); in IsHandledURL()
|
D | url_request_job_manager.cc | 62 if (!job_factory->IsHandledProtocol(scheme)) { in CreateJob() 141 if (!job_factory->IsHandledProtocol(scheme)) { in MaybeInterceptRedirect() 173 if (!job_factory->IsHandledProtocol(scheme)) { in MaybeInterceptResponse()
|
D | url_request_job_factory_impl.h | 34 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
|
D | protocol_intercept_job_factory.h | 38 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
|
D | url_request_job_factory.h | 50 virtual bool IsHandledProtocol(const std::string& scheme) const = 0; in NON_EXPORTED_BASE()
|
D | url_request.h | 321 static bool IsHandledProtocol(const std::string& scheme); in NON_EXPORTED_BASE()
|
D | url_request.cc | 532 bool URLRequest::IsHandledProtocol(const std::string& scheme) { in IsHandledProtocol() function in net::URLRequest 543 return IsHandledProtocol(url.scheme()); in IsHandledURL()
|
/external/chromium_org/android_webview/browser/net/ |
D | aw_url_request_job_factory.cc | 25 bool AwURLRequestJobFactory::IsHandledProtocol( in IsHandledProtocol() function in android_webview::AwURLRequestJobFactory 53 if (net::URLRequest::IsHandledProtocol(scheme)) in MaybeCreateJobWithProtocolHandler()
|
D | aw_url_request_job_factory.h | 36 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
D | drive_url_request_job_unittest.cc | 56 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE { in IsHandledProtocol() function in drive::__anon8d761a2e0111::TestURLRequestJobFactory 61 return url.is_valid() && IsHandledProtocol(url.scheme()); in IsHandledURL()
|
/external/chromium/chrome/browser/custom_handlers/ |
D | protocol_handler_registry.cc | 74 !net::URLRequest::IsHandledProtocol(scheme); in CanSchemeBeOverridden()
|
/external/chromium/net/url_request/ |
D | url_request.cc | 311 bool URLRequest::IsHandledProtocol(const std::string& scheme) { in IsHandledProtocol() function in net::URLRequest 322 return IsHandledProtocol(url.scheme()); in IsHandledURL()
|
D | url_request.h | 260 static bool IsHandledProtocol(const std::string& scheme);
|
/external/chromium_org/chrome/browser/profiles/ |
D | profile_io_data.cc | 657 bool ProfileIOData::IsHandledProtocol(const std::string& scheme) { in IsHandledProtocol() function in ProfileIOData 681 return net::URLRequest::IsHandledProtocol(scheme); in IsHandledProtocol() 691 return IsHandledProtocol(url.scheme()); in IsHandledURL()
|
D | profile_io_data.h | 82 static bool IsHandledProtocol(const std::string& scheme);
|
/external/chromium_org/chrome/browser/autocomplete/ |
D | autocomplete_input.cc | 181 if (ProfileIOData::IsHandledProtocol(UTF16ToASCII(parsed_scheme))) in Parse()
|
/external/chromium_org/chrome/browser/tab_contents/ |
D | render_view_context_menu.cc | 1278 ProfileIOData::IsHandledProtocol(params_.link_url.scheme()); in IsCommandIdEnabled() 1289 ProfileIOData::IsHandledProtocol(params_.src_url.scheme()); in IsCommandIdEnabled() 1342 url.is_valid() && ProfileIOData::IsHandledProtocol(url.scheme()); in IsCommandIdEnabled()
|
/external/chromium_org/chrome/browser/ui/startup/ |
D | startup_browser_creator_impl.cc | 840 (registry && registry->IsHandledProtocol(tabs[i].url.scheme())); in OpenTabsInBrowser()
|
/external/chromium/chrome/browser/autocomplete/ |
D | autocomplete.cc | 166 if (net::URLRequest::IsHandledProtocol(UTF16ToASCII(parsed_scheme))) in Parse()
|