Chromium Code Reviews| Index: Source/core/platform/graphics/skia/FontCacheSkiaWin.cpp |
| diff --git a/Source/core/platform/graphics/skia/FontCacheSkiaWin.cpp b/Source/core/platform/graphics/skia/FontCacheSkiaWin.cpp |
| index ac771356b191d18ac650412bc0105a66c1d36a97..4462607a6d7f0a07de02b3cfef473bab8747a37a 100644 |
| --- a/Source/core/platform/graphics/skia/FontCacheSkiaWin.cpp |
| +++ b/Source/core/platform/graphics/skia/FontCacheSkiaWin.cpp |
| @@ -164,7 +164,7 @@ static bool typefacesMatchesFamily(const SkTypeface* tf, const AtomicString& fam |
| SkTypeface::LocalizedString actualFamily; |
| while (actualFamilies->next(&actualFamily)) { |
| - if (equalIgnoringCase(family, actualFamily.fString.c_str())) { |
| + if (equalIgnoringCase(family, AtomicString::fromUTF8(actualFamily.fString.c_str()))) { |
|
leviw_travelin_and_unemployed
2013/09/18 20:07:46
Talked to eseidel. He mentioned that we may want t
|
| matchesRequestedFamily = true; |
| break; |
| } |