Index: chrome/browser/autocomplete/zero_suggest_provider.cc |
diff --git a/chrome/browser/autocomplete/zero_suggest_provider.cc b/chrome/browser/autocomplete/zero_suggest_provider.cc |
index 6680bb987d36158570168815c3e22da6d8cbb3eb..ead3844840d97b48f714662d5bb2d408342a77bd 100644 |
--- a/chrome/browser/autocomplete/zero_suggest_provider.cc |
+++ b/chrome/browser/autocomplete/zero_suggest_provider.cc |
@@ -222,7 +222,7 @@ bool ZeroSuggestProvider::ShouldSendURL(const GURL& url) const { |
// Only allow HTTP URLs or Google HTTPS URLs (including Google search |
// result pages). For the latter case, Google was already sent the HTTPS |
// URLs when requesting the page, so the information is just re-sent. |
- return (url.scheme() == chrome::kHttpScheme) || |
+ return (url.scheme() == content::kHttpScheme) || |
google_util::IsGoogleDomainUrl(url, google_util::ALLOW_SUBDOMAIN, |
google_util::ALLOW_NON_STANDARD_PORTS); |
} |