diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-05 09:44:24 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-05 09:44:24 +0000 |
commit | fb4fe095b612f8039e63c62cc87bfeacb5966cde (patch) | |
tree | d8ffb6f6d0dcd0710c18535cb3bba7422fe43ca2 /chrome/common/content_settings_helper.cc | |
parent | 46e8bf650a4625a34a7b5ba76db7c3716f1a2f1d (diff) | |
download | chromium_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.cc | 2 |
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; } |