| Index: chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
 | 
| diff --git a/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc b/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
 | 
| index 67683db8a4c8a10cd3f899d9668b161bfd0fd129..cb861563cb99a64bcaf09c21d528c93fb9410d02 100644
 | 
| --- a/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
 | 
| +++ b/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
 | 
| @@ -103,7 +103,7 @@ scoped_ptr<ChromeSettingsOverrides::Search_provider> ParseSearchEngine(
 | 
|  // A www. prefix is not informative and thus not worth the limited real estate
 | 
|  // in the permissions UI.
 | 
|  std::string RemoveWwwPrefix(const std::string& url) {
 | 
| -  if (StartsWithASCII(url, kWwwPrefix, false))
 | 
| +  if (base::StartsWithASCII(url, kWwwPrefix, false))
 | 
|      return url.substr(strlen(kWwwPrefix));
 | 
|    return url;
 | 
|  }
 | 
| 
 |