summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/app_list/search/common/webservice_search_provider.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/app_list/search/common/webservice_search_provider.cc')
-rw-r--r--chrome/browser/ui/app_list/search/common/webservice_search_provider.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/app_list/search/common/webservice_search_provider.cc b/chrome/browser/ui/app_list/search/common/webservice_search_provider.cc
index 8b4318e..73bcf1db 100644
--- a/chrome/browser/ui/app_list/search/common/webservice_search_provider.cc
+++ b/chrome/browser/ui/app_list/search/common/webservice_search_provider.cc
@@ -90,7 +90,7 @@ bool WebserviceSearchProvider::IsSensitiveInput(const base::string16& query) {
// Don't send anything for https except the hostname. Hostnames are OK
// because they are visible when the TCP connection is established, but the
// specific path may reveal private information.
- if (LowerCaseEqualsASCII(query_as_url.scheme(), content::kHttpsScheme) &&
+ if (LowerCaseEqualsASCII(query_as_url.scheme(), url::kHttpsScheme) &&
!query_as_url.path().empty() && query_as_url.path() != "/") {
return true;
}