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 dda2cd5..e553eab 100644
--- a/chrome/common/content_settings_helper.cc
+++ b/chrome/common/content_settings_helper.cc
@@ -15,7 +15,7 @@ std::string OriginToString(const GURL& origin) {
std::string port_component(origin.IntPort() != url::PORT_UNSPECIFIED
? ":" + origin.port()
: std::string());
- std::string scheme_component(!origin.SchemeIs(content::kHttpScheme)
+ std::string scheme_component(!origin.SchemeIs(url::kHttpScheme)
? origin.scheme() +
content::kStandardSchemeSeparator
: std::string());