diff options
Diffstat (limited to 'chrome/browser/autocomplete/history_url_provider.cc')
-rw-r--r-- | chrome/browser/autocomplete/history_url_provider.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autocomplete/history_url_provider.cc b/chrome/browser/autocomplete/history_url_provider.cc index 93581bf..7f59e68 100644 --- a/chrome/browser/autocomplete/history_url_provider.cc +++ b/chrome/browser/autocomplete/history_url_provider.cc @@ -968,7 +968,7 @@ bool HistoryURLProvider::CanFindIntranetURL( // input's text and parts between Parse() and here, it seems better to be // paranoid and check. if ((input.type() != metrics::OmniboxInputType::UNKNOWN) || - !LowerCaseEqualsASCII(input.scheme(), url::kHttpScheme) || + !base::LowerCaseEqualsASCII(input.scheme(), url::kHttpScheme) || !input.parts().host.is_nonempty()) return false; const std::string host(base::UTF16ToUTF8( |