diff options
author | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-20 00:57:39 +0000 |
---|---|---|
committer | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-20 00:57:39 +0000 |
commit | 5af15b4961481876c87f5a32e0f50df8e7d060ce (patch) | |
tree | 12a79f7ad5d948f7bfa50a3dc7e05220ced4edac /chrome/common/url_constants.cc | |
parent | db4fd48ab5672dd485f8510a69d495bbb327fc4d (diff) | |
download | chromium_src-5af15b4961481876c87f5a32e0f50df8e7d060ce.zip chromium_src-5af15b4961481876c87f5a32e0f50df8e7d060ce.tar.gz chromium_src-5af15b4961481876c87f5a32e0f50df8e7d060ce.tar.bz2 |
Get chrome:// dev tool urls hooked up in content_shell.
Review URL: https://chromiumcodereview.appspot.com/9950040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133107 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/url_constants.cc')
-rw-r--r-- | chrome/common/url_constants.cc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/chrome/common/url_constants.cc b/chrome/common/url_constants.cc index d0ce1ca..9608098 100644 --- a/chrome/common/url_constants.cc +++ b/chrome/common/url_constants.cc @@ -6,13 +6,6 @@ #include "googleurl/src/url_util.h" -namespace { -const char* kSavableSchemes[] = { - chrome::kExtensionScheme, - NULL -}; -} // namespace - namespace chrome { #if defined(OS_CHROMEOS) @@ -418,15 +411,4 @@ int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); const char kExtensionScheme[] = "chrome-extension"; -void RegisterChromeSchemes() { - url_util::AddStandardScheme(kExtensionScheme); -#if defined(OS_CHROMEOS) - url_util::AddStandardScheme(kCrosScheme); - url_util::AddStandardScheme(kGDataScheme); -#endif - - // This call will also lock the list of standard schemes. - content::RegisterContentSchemes(kSavableSchemes); -} - } // namespace chrome |