summaryrefslogtreecommitdiffstats
path: root/content/browser
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser')
-rw-r--r--content/browser/resource_context_impl.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/content/browser/resource_context_impl.cc b/content/browser/resource_context_impl.cc
index fa3fa7e..d3f9da6 100644
--- a/content/browser/resource_context_impl.cc
+++ b/content/browser/resource_context_impl.cc
@@ -123,6 +123,10 @@ class DeveloperProtocolHandler
return NULL;
}
+ virtual bool WillHandleProtocol(const std::string& protocol) const {
+ return protocol == chrome::kChromeUIScheme;
+ }
+
private:
AppCacheService* appcache_service_;
BlobStorageController* blob_storage_controller_;