| Index: Source/core/css/CSSFontSelector.cpp
|
| diff --git a/Source/core/css/CSSFontSelector.cpp b/Source/core/css/CSSFontSelector.cpp
|
| index a282eed5a34a22f3555bdddcf1f763e4ff826524..f4fb67d5a4a0607e24abc84ee822392141252f8e 100644
|
| --- a/Source/core/css/CSSFontSelector.cpp
|
| +++ b/Source/core/css/CSSFontSelector.cpp
|
| @@ -214,11 +214,11 @@ PassRefPtr<FontData> CSSFontSelector::getFontData(const FontDescription& fontDes
|
| return FontCache::fontCache()->getFontData(fontDescription, settingsFamilyName);
|
| }
|
|
|
| -void CSSFontSelector::willUseFontData(const FontDescription& fontDescription, const AtomicString& family)
|
| +void CSSFontSelector::willUseFontData(const FontDescription& fontDescription, const AtomicString& family, UChar32 character)
|
| {
|
| CSSSegmentedFontFace* face = m_fontFaceCache.get(fontDescription, family);
|
| if (face)
|
| - face->willUseFontData(fontDescription);
|
| + face->willUseFontData(fontDescription, character);
|
| }
|
|
|
| #if !ENABLE(OILPAN)
|
|
|