Index: chrome/common/url_constants.cc |
=================================================================== |
--- chrome/common/url_constants.cc (revision 133033) |
+++ chrome/common/url_constants.cc (working copy) |
@@ -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 @@ |
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 |