| Index: components/url_fixer/url_fixer.cc
 | 
| diff --git a/components/url_fixer/url_fixer.cc b/components/url_fixer/url_fixer.cc
 | 
| index 811f1fb6720b01427269eb2084455b1c88c02b07..eaf85b0d00eccc163b8846fb9d9b932a20c12110 100644
 | 
| --- a/components/url_fixer/url_fixer.cc
 | 
| +++ b/components/url_fixer/url_fixer.cc
 | 
| @@ -547,7 +547,7 @@ GURL url_fixer::FixupURL(const std::string& text,
 | 
|  
 | 
|    // Parse and rebuild about: and chrome: URLs, except about:blank.
 | 
|    bool chrome_url =
 | 
| -      !LowerCaseEqualsASCII(trimmed, url::kAboutBlankURL) &&
 | 
| +      !base::LowerCaseEqualsASCII(trimmed, url::kAboutBlankURL) &&
 | 
|        ((scheme == url::kAboutScheme) || (scheme == kChromeUIScheme));
 | 
|  
 | 
|    // For some schemes whose layouts we understand, we rebuild it.
 | 
| 
 |