Index: components/google/core/browser/google_url_tracker.cc |
diff --git a/components/google/core/browser/google_url_tracker.cc b/components/google/core/browser/google_url_tracker.cc |
index 0b834308c70df7e1cc80e3269c806644a4778d07..770c9af48bd3d0625bb667ae499fd7e301155a02 100644 |
--- a/components/google/core/browser/google_url_tracker.cc |
+++ b/components/google/core/browser/google_url_tracker.cc |
@@ -97,7 +97,7 @@ void GoogleURLTracker::OnURLFetchComplete(const net::URLFetcher* source) { |
std::string url_str; |
source->GetResponseAsString(&url_str); |
base::TrimWhitespace(url_str, base::TRIM_ALL, &url_str); |
- if (!StartsWithASCII(url_str, ".google.", false)) |
+ if (!base::StartsWithASCII(url_str, ".google.", false)) |
return; |
GURL url("https://www" + url_str); |
if (!url.is_valid() || (url.path().length() > 1) || url.has_query() || |