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