diff options
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 |