summaryrefslogtreecommitdiffstats
path: root/chrome/browser/search_engines/template_url_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/search_engines/template_url_service.cc')
-rw-r--r--chrome/browser/search_engines/template_url_service.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/search_engines/template_url_service.cc b/chrome/browser/search_engines/template_url_service.cc
index 10d5e95..1042ddb 100644
--- a/chrome/browser/search_engines/template_url_service.cc
+++ b/chrome/browser/search_engines/template_url_service.cc
@@ -518,9 +518,9 @@ base::string16 TemplateURLService::CleanUserInputKeyword(
// type a web address, but rather an FTP, file:, or other scheme URL, or a
// search query with some sort of initial operator (e.g. "site:").
if (result.compare(0, scheme_component.end(),
- base::ASCIIToUTF16(content::kHttpScheme)) &&
+ base::ASCIIToUTF16(url::kHttpScheme)) &&
result.compare(0, scheme_component.end(),
- base::ASCIIToUTF16(content::kHttpsScheme)))
+ base::ASCIIToUTF16(url::kHttpsScheme)))
return base::string16();
// Include trailing ':'.