summaryrefslogtreecommitdiffstats
path: root/chrome/common/content_settings_helper.cc
diff options
context:
space:
mode:
authorblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 09:44:24 +0000
committerblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 09:44:24 +0000
commitfb4fe095b612f8039e63c62cc87bfeacb5966cde (patch)
treed8ffb6f6d0dcd0710c18535cb3bba7422fe43ca2 /chrome/common/content_settings_helper.cc
parent46e8bf650a4625a34a7b5ba76db7c3716f1a2f1d (diff)
downloadchromium_src-fb4fe095b612f8039e63c62cc87bfeacb5966cde.zip
chromium_src-fb4fe095b612f8039e63c62cc87bfeacb5966cde.tar.gz
chromium_src-fb4fe095b612f8039e63c62cc87bfeacb5966cde.tar.bz2
Move kStandardSchemeSeparator from //content to //url
This constant is used in code shared by iOS, and is general enough to be placed in //url. TBR=benm,yoz Review URL: https://codereview.chromium.org/319613002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/content_settings_helper.cc')
-rw-r--r--chrome/common/content_settings_helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/content_settings_helper.cc b/chrome/common/content_settings_helper.cc
index e553eab..7553c10 100644
--- a/chrome/common/content_settings_helper.cc
+++ b/chrome/common/content_settings_helper.cc
@@ -17,7 +17,7 @@ std::string OriginToString(const GURL& origin) {
: std::string());
std::string scheme_component(!origin.SchemeIs(url::kHttpScheme)
? origin.scheme() +
- content::kStandardSchemeSeparator
+ url::kStandardSchemeSeparator
: std::string());
return scheme_component + origin.host() + port_component;
}