| Index: chrome/common/pref_names_util.cc
 | 
| diff --git a/chrome/common/pref_names_util.cc b/chrome/common/pref_names_util.cc
 | 
| index 7ab3db3c358cda3f4e8ee0e1fa7acb900df508c0..085726586b2468399968b7722025247456572017 100644
 | 
| --- a/chrome/common/pref_names_util.cc
 | 
| +++ b/chrome/common/pref_names_util.cc
 | 
| @@ -13,7 +13,7 @@ const char kWebKitFontPrefPrefix[] = "webkit.webprefs.fonts.";
 | 
|  bool ParseFontNamePrefPath(const std::string& pref_path,
 | 
|                             std::string* generic_family,
 | 
|                             std::string* script) {
 | 
| -  if (!StartsWithASCII(pref_path, kWebKitFontPrefPrefix, true))
 | 
| +  if (!base::StartsWithASCII(pref_path, kWebKitFontPrefPrefix, true))
 | 
|      return false;
 | 
|  
 | 
|    size_t start = strlen(kWebKitFontPrefPrefix);
 | 
| 
 |