Index: chrome/browser/ui/app_list/search/common/webservice_search_provider.cc |
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 8b4318e737d3ca9cdbac8beca1adb9fead308ef5..9657fdcf9a03db286a29527df2389dee810f89dc 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 |
@@ -14,6 +14,7 @@ |
#include "chrome/browser/ui/app_list/search/common/webservice_cache_factory.h" |
#include "chrome/common/url_constants.h" |
#include "url/gurl.h" |
+#include "url/url_constants.h" |
namespace app_list { |
@@ -90,7 +91,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; |
} |