diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-26 03:36:58 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-26 03:36:58 +0000 |
commit | 4654bfe33256021b07fa4b9518e28e3e937ae39d (patch) | |
tree | 4370202ffad7545e22ea75934a85ec9a5a5e7a18 /content/common/savable_url_schemes.cc | |
parent | d474bf8ae4d09569fccefd06d35e0e4e98745e43 (diff) | |
download | chromium_src-4654bfe33256021b07fa4b9518e28e3e937ae39d.zip chromium_src-4654bfe33256021b07fa4b9518e28e3e937ae39d.tar.gz chromium_src-4654bfe33256021b07fa4b9518e28e3e937ae39d.tar.bz2 |
content: Move kHttpsScheme constant into content namespace.
BUG=None
TBR=jam@chromium.org
Review URL: https://chromiumcodereview.appspot.com/23112033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/savable_url_schemes.cc')
-rw-r--r-- | content/common/savable_url_schemes.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/common/savable_url_schemes.cc b/content/common/savable_url_schemes.cc index 0e2c37e..c37b78c 100644 --- a/content/common/savable_url_schemes.cc +++ b/content/common/savable_url_schemes.cc @@ -8,11 +8,13 @@ #include "content/public/common/url_constants.h" +namespace content { + namespace { const char* const kDefaultSavableSchemes[] = { chrome::kHttpScheme, - chrome::kHttpsScheme, + kHttpsScheme, chrome::kFileScheme, chrome::kFileSystemScheme, chrome::kFtpScheme, @@ -26,8 +28,6 @@ const char* const* g_savable_schemes = kDefaultSavableSchemes; } // namespace -namespace content { - const char* const* GetSavableSchemesInternal() { return g_savable_schemes; } |