HomeSort by relevance Sort by last modified time
    Searched refs:IsHandledProtocol (Results 1 - 25 of 30) sorted by null

1 2

  /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))
aw_url_request_job_factory.h 36 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
  /external/chromium_org/chrome/browser/autocomplete/
chrome_autocomplete_scheme_classifier.cc 27 (ProfileIOData::IsHandledProtocol(scheme) ||
38 if (registry && registry->IsHandledProtocol(scheme))
  /external/chromium_org/net/url_request/
url_request_intercepting_job_factory.cc 35 bool URLRequestInterceptingJobFactory::IsHandledProtocol(
37 return job_factory_->IsHandledProtocol(scheme);
url_request_intercepting_job_factory.h 45 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
url_request_job_factory.h 50 virtual bool IsHandledProtocol(const std::string& scheme) const = 0;
url_request_job_factory_impl.h 36 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
url_request_job_factory_impl.cc 66 bool URLRequestJobFactoryImpl::IsHandledProtocol(
78 return IsHandledProtocol(url.scheme());
url_request_job_manager.cc 60 if (!job_factory->IsHandledProtocol(scheme)) {
120 if (!job_factory->IsHandledProtocol(scheme))
147 if (!job_factory->IsHandledProtocol(scheme))
url_request_file_job_unittest.cc 85 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
90 return IsHandledProtocol(url.scheme());
url_request.h 291 static bool IsHandledProtocol(const std::string& scheme);
    [all...]
url_request.cc 481 bool URLRequest::IsHandledProtocol(const std::string& scheme) {
492 return IsHandledProtocol(url.scheme());
    [all...]
  /external/chromium_org/athena/content/shell/
scheme_classifier_factory.cc 23 if (net::URLRequest::IsHandledProtocol(scheme))
  /external/chromium_org/components/omnibox/
test_scheme_classifier.cc 25 if (net::URLRequest::IsHandledProtocol(scheme))
keyword_provider_unittest.cc 26 if (net::URLRequest::IsHandledProtocol(scheme))
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry_browsertest.cc 61 ASSERT_TRUE(registry->IsHandledProtocol(protocol));
71 ASSERT_FALSE(registry->IsHandledProtocol(protocol));
protocol_handler_registry_unittest.cc 72 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
90 ASSERT_EQ(expected, interceptor->IsHandledProtocol(scheme));
456 ASSERT_FALSE(registry()->IsHandledProtocol("test"));
458 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
464 ASSERT_FALSE(registry()->IsHandledProtocol("test"));
466 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
472 ASSERT_FALSE(registry()->IsHandledProtocol("test"));
514 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
518 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
567 ASSERT_TRUE(registry()->IsHandledProtocol("test"))
    [all...]
protocol_handler_registry.cc 76 bool IsHandledProtocol(const std::string& scheme) const;
116 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);
605 bool ProtocolHandlerRegistry::IsHandledProtocol(
639 if (erase_success && !IsHandledProtocol(handler.protocol())) {
    [all...]
protocol_handler_registry.h 119 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
225 bool IsHandledProtocol(const std::string& scheme) const;
  /external/chromium_org/chrome/browser/chromeos/fileapi/
external_file_url_request_job_unittest.cc 66 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
71 return url.is_valid() && IsHandledProtocol(url.scheme());
  /external/chromium_org/chrome/browser/profiles/
profile_io_data.cc 685 bool ProfileIOData::IsHandledProtocol(const std::string& scheme) {
712 return net::URLRequest::IsHandledProtocol(scheme);
722 return IsHandledProtocol(url.scheme());
    [all...]
profile_io_data.h 98 static bool IsHandledProtocol(const std::string& scheme);
  /external/chromium_org/content/browser/fileapi/
file_system_dir_url_request_job_unittest.cc 91 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
file_system_url_request_job_unittest.cc 100 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
file_writer_delegate_unittest.cc 226 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {

Completed in 484 milliseconds

1 2