Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(614)

Unified Diff: content/common/savable_url_schemes.cc

Issue 23112033: content: Move kHttpsScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/web_contents/navigation_controller_impl.cc ('k') | content/plugin/webplugin_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/savable_url_schemes.cc
diff --git a/content/common/savable_url_schemes.cc b/content/common/savable_url_schemes.cc
index 0e2c37e09d71edffb3b9d7718275a180147294ce..c37b78c2465cdbd90cd032e60fe52443f193a8c5 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;
}
« no previous file with comments | « content/browser/web_contents/navigation_controller_impl.cc ('k') | content/plugin/webplugin_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698