summaryrefslogtreecommitdiffstats
path: root/chrome/common/search_urls.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/search_urls.cc')
-rw-r--r--chrome/common/search_urls.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/search_urls.cc b/chrome/common/search_urls.cc
index 9856842..b1277b6 100644
--- a/chrome/common/search_urls.cc
+++ b/chrome/common/search_urls.cc
@@ -14,8 +14,8 @@ bool MatchesOrigin(const GURL& my_url, const GURL& other_url) {
return my_url.host() == other_url.host() &&
my_url.port() == other_url.port() &&
(my_url.scheme() == other_url.scheme() ||
- (my_url.SchemeIs(content::kHttpsScheme) &&
- other_url.SchemeIs(content::kHttpScheme)));
+ (my_url.SchemeIs(url::kHttpsScheme) &&
+ other_url.SchemeIs(url::kHttpScheme)));
}
} // namespace