Index: chrome/browser/autocomplete/history_url_provider.cc |
diff --git a/chrome/browser/autocomplete/history_url_provider.cc b/chrome/browser/autocomplete/history_url_provider.cc |
index cf996fb7538d02e982c97cf8d920f6e259aaee8c..a29f82711169f064f51e900d14653ef7414baa37 100644 |
--- a/chrome/browser/autocomplete/history_url_provider.cc |
+++ b/chrome/browser/autocomplete/history_url_provider.cc |
@@ -795,7 +795,7 @@ bool HistoryURLProvider::CanFindIntranetURL( |
// input's text and parts between Parse() and here, it seems better to be |
// paranoid and check. |
if ((input.type() != AutocompleteInput::UNKNOWN) || |
- !LowerCaseEqualsASCII(input.scheme(), chrome::kHttpScheme) || |
+ !LowerCaseEqualsASCII(input.scheme(), content::kHttpScheme) || |
!input.parts().host.is_nonempty()) |
return false; |
const std::string host(UTF16ToUTF8( |