| Index: Source/core/css/CSSFontSelector.cpp
|
| diff --git a/Source/core/css/CSSFontSelector.cpp b/Source/core/css/CSSFontSelector.cpp
|
| index 1de90bee88fb2d815a29e6b6d003197a90e84334..4fea17cbb7f839ea1a6db23a9a6c5fe43910770e 100644
|
| --- a/Source/core/css/CSSFontSelector.cpp
|
| +++ b/Source/core/css/CSSFontSelector.cpp
|
| @@ -200,11 +200,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);
|
| }
|
|
|
| void CSSFontSelector::clearDocument()
|
|
|