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 6301c285abe46ed9648656619ea5aba6d6e67df8..8b8085b108f06ffe4671344970479606ecf68ad0 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" |
@@ -862,7 +863,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( |