HomeSort by relevance Sort by last modified time
    Searched refs:IsHandledProtocol (Results 1 - 25 of 27) 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/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 81 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
86 return IsHandledProtocol(url.scheme());
url_request.h 294 static bool IsHandledProtocol(const std::string& scheme);
    [all...]
url_request.cc 551 bool URLRequest::IsHandledProtocol(const std::string& scheme) {
562 return IsHandledProtocol(url.scheme());
    [all...]
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry_unittest.cc 71 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
89 ASSERT_EQ(expected, interceptor->IsHandledProtocol(scheme));
455 ASSERT_FALSE(registry()->IsHandledProtocol("test"));
457 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
463 ASSERT_FALSE(registry()->IsHandledProtocol("test"));
465 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
471 ASSERT_FALSE(registry()->IsHandledProtocol("test"));
513 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
517 ASSERT_TRUE(registry()->IsHandledProtocol("test"));
566 ASSERT_TRUE(registry()->IsHandledProtocol("test"))
    [all...]
protocol_handler_registry_browsertest.cc 60 ASSERT_TRUE(registry->IsHandledProtocol(protocol));
protocol_handler_registry.cc 77 bool IsHandledProtocol(const std::string& scheme) const;
117 bool ProtocolHandlerRegistry::IOThreadDelegate::IsHandledProtocol(
194 bool ProtocolHandlerRegistry::JobInterceptorFactory::IsHandledProtocol(
197 return io_thread_delegate_->IsHandledProtocol(scheme) ||
198 job_factory_->IsHandledProtocol(scheme);
205 io_thread_delegate_->IsHandledProtocol(url.scheme())) ||
281 return ProfileIOData::IsHandledProtocol(protocol);
595 bool ProtocolHandlerRegistry::IsHandledProtocol(
630 if (erase_success && !IsHandledProtocol(handler.protocol())) {
    [all...]
protocol_handler_registry.h 119 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
217 bool IsHandledProtocol(const std::string& scheme) const;
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_url_request_job_unittest.cc 57 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
62 return url.is_valid() && IsHandledProtocol(url.scheme());
  /external/chromium_org/chrome/browser/profiles/
profile_io_data.cc 616 bool ProfileIOData::IsHandledProtocol(const std::string& scheme) {
641 return net::URLRequest::IsHandledProtocol(scheme);
651 return IsHandledProtocol(url.scheme());
    [all...]
profile_io_data.h 83 static bool IsHandledProtocol(const std::string& scheme);
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.cc 188 if (ProfileIOData::IsHandledProtocol(base::UTF16ToASCII(parsed_scheme)) ||
  /external/chromium_org/content/browser/fileapi/
file_system_dir_url_request_job_unittest.cc 89 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
file_system_url_request_job_unittest.cc 98 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
file_writer_delegate_unittest.cc 227 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
  /external/chromium_org/chrome/browser/renderer_context_menu/
render_view_context_menu.cc     [all...]
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator_impl.cc 784 (registry && registry->IsHandledProtocol(tabs[i].url.scheme()));
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_request_handler_unittest.cc 162 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
    [all...]

Completed in 1345 milliseconds

1 2