diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 00:17:29 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 00:17:29 +0000 |
commit | 2d9748b216a7432d03425152e8889aa26c90b885 (patch) | |
tree | 1161f5c7264322f3325e064784e98eb8d2628328 /content/common/url_schemes.cc | |
parent | b633c1d75b3539ab940eae2a65d2f574f7d5b88c (diff) | |
download | chromium_src-2d9748b216a7432d03425152e8889aa26c90b885.zip chromium_src-2d9748b216a7432d03425152e8889aa26c90b885.tar.gz chromium_src-2d9748b216a7432d03425152e8889aa26c90b885.tar.bz2 |
Cleanup: Move kChromeUIScheme constant into content namespace.
BUG=None
TEST=None, no functional changes
TBR=jam@chromium.org
Review URL: https://codereview.chromium.org/149643010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250244 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/url_schemes.cc')
-rw-r--r-- | content/common/url_schemes.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/url_schemes.cc b/content/common/url_schemes.cc index 2b4be7d..8479ce4 100644 --- a/content/common/url_schemes.cc +++ b/content/common/url_schemes.cc @@ -34,7 +34,7 @@ void RegisterContentSchemes(bool lock_standard_schemes) { &additional_savable_schemes); url_util::AddStandardScheme(chrome::kChromeDevToolsScheme); - url_util::AddStandardScheme(chrome::kChromeUIScheme); + url_util::AddStandardScheme(kChromeUIScheme); url_util::AddStandardScheme(kGuestScheme); url_util::AddStandardScheme(kMetadataScheme); std::for_each(additional_standard_schemes.begin(), |