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 afe642297a995e5a167163675b5ee347e5a6c8db..4c7021f2c203a6e5e9bf3155501173ac526481d0 100644 |
--- a/chrome/browser/autocomplete/history_url_provider.cc |
+++ b/chrome/browser/autocomplete/history_url_provider.cc |
@@ -36,6 +36,7 @@ |
#include "chrome/common/url_constants.h" |
#include "net/base/net_util.h" |
#include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
+#include "net/base/url_constants.h" |
#include "url/gurl.h" |
#include "url/url_parse.h" |
#include "url/url_util.h" |
@@ -864,7 +865,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(), content::kHttpScheme) || |
+ !LowerCaseEqualsASCII(input.scheme(), net::kHttpScheme) || |
!input.parts().host.is_nonempty()) |
return false; |
const std::string host(base::UTF16ToUTF8( |