summaryrefslogtreecommitdiffstats
path: root/chrome/common/content_settings_helper.cc
diff options
context:
space:
mode:
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;
}