Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Unified Diff: content/browser/resource_context_impl.cc

Issue 9950040: Get chrome:// dev tool urls hooked up in content_shell. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/resource_context_impl.cc
===================================================================
--- content/browser/resource_context_impl.cc (revision 129954)
+++ content/browser/resource_context_impl.cc (working copy)
@@ -123,6 +123,10 @@
return NULL;
}
+ virtual bool WillHandleProtocol(const std::string& protocol) const {
+ return protocol == chrome::kChromeUIScheme;
michaeln 2012/03/31 01:30:06 This is needed otherwise 'chrome' urls will be ass
+ }
+
private:
AppCacheService* appcache_service_;
BlobStorageController* blob_storage_controller_;

Powered by Google App Engine
This is Rietveld 408576698