| Index: components/google/core/browser/google_util.cc
 | 
| diff --git a/components/google/core/browser/google_util.cc b/components/google/core/browser/google_util.cc
 | 
| index 9b16899f77231a112c4c5462aa5b0a66d357d8d9..4d7d9d77d0624dd5703f9c84dfc1b207ca5fe74c 100644
 | 
| --- a/components/google/core/browser/google_util.cc
 | 
| +++ b/components/google/core/browser/google_util.cc
 | 
| @@ -162,7 +162,8 @@ GURL CommandLineGoogleBaseURL() {
 | 
|  bool StartsWithCommandLineGoogleBaseURL(const GURL& url) {
 | 
|    GURL base_url(CommandLineGoogleBaseURL());
 | 
|    return base_url.is_valid() &&
 | 
| -      StartsWithASCII(url.possibly_invalid_spec(), base_url.spec(), true);
 | 
| +         base::StartsWithASCII(url.possibly_invalid_spec(), base_url.spec(),
 | 
| +                               true);
 | 
|  }
 | 
|  
 | 
|  bool IsGoogleHostname(const std::string& host,
 | 
| @@ -188,7 +189,7 @@ bool IsGoogleHomePageUrl(const GURL& url) {
 | 
|  
 | 
|    // Make sure the path is a known home page path.
 | 
|    std::string path(url.path());
 | 
| -  return IsPathHomePageBase(path) || StartsWithASCII(path, "/ig", false);
 | 
| +  return IsPathHomePageBase(path) || base::StartsWithASCII(path, "/ig", false);
 | 
|  }
 | 
|  
 | 
|  bool IsGoogleSearchUrl(const GURL& url) {
 | 
| 
 |