| Index: chrome/browser/ui/prefs/prefs_tab_helper.cc
 | 
| diff --git a/chrome/browser/ui/prefs/prefs_tab_helper.cc b/chrome/browser/ui/prefs/prefs_tab_helper.cc
 | 
| index 670e36a1b39e781dcf27343017223c97ebc22634..19c396d25e8a4190f64c6a9d925323177e7e91fb 100644
 | 
| --- a/chrome/browser/ui/prefs/prefs_tab_helper.cc
 | 
| +++ b/chrome/browser/ui/prefs/prefs_tab_helper.cc
 | 
| @@ -137,7 +137,7 @@ void RegisterFontFamilyMapObserver(
 | 
|      PrefChangeRegistrar* registrar,
 | 
|      const char* map_name,
 | 
|      const PrefChangeRegistrar::NamedChangeCallback& obs) {
 | 
| -  DCHECK(StartsWithASCII(map_name, "webkit.webprefs.", true));
 | 
| +  DCHECK(base::StartsWithASCII(map_name, "webkit.webprefs.", true));
 | 
|  
 | 
|    for (size_t i = 0; i < prefs::kWebKitScriptsForFontFamilyMapsLength; ++i) {
 | 
|      const char* script = prefs::kWebKitScriptsForFontFamilyMaps[i];
 | 
| @@ -149,7 +149,7 @@ void RegisterFontFamilyMapObserver(
 | 
|  // On Windows with antialising we want to use an alternate fixed font like
 | 
|  // Consolas, which looks much better than Courier New.
 | 
|  bool ShouldUseAlternateDefaultFixedFont(const std::string& script) {
 | 
| -  if (!StartsWithASCII(script, "courier", false))
 | 
| +  if (!base::StartsWithASCII(script, "courier", false))
 | 
|      return false;
 | 
|    UINT smooth_type = 0;
 | 
|    SystemParametersInfo(SPI_GETFONTSMOOTHINGTYPE, 0, &smooth_type, 0);
 | 
| 
 |