| Index: third_party/WebKit/Source/core/css/CSSFontSelector.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSFontSelector.cpp b/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
|
| index 9c306a282d5bb536dcbec4ccb3543f350737998e..65b0d4daaa08eeffd486416c47d9aa5d3ffd8d22 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
|
| @@ -147,11 +147,11 @@
|
| face->willUseFontData(fontDescription, character);
|
| }
|
|
|
| -void CSSFontSelector::willUseRange(const FontDescription& fontDescription, const AtomicString& family, const FontDataForRangeSet& rangeSet)
|
| +void CSSFontSelector::willUseRange(const FontDescription& fontDescription, const AtomicString& family, const FontDataRange& range)
|
| {
|
| CSSSegmentedFontFace* face = m_fontFaceCache.get(fontDescription, family);
|
| if (face)
|
| - face->willUseRange(fontDescription, rangeSet);
|
| + face->willUseRange(fontDescription, range);
|
| }
|
|
|
| bool CSSFontSelector::isPlatformFontAvailable(const FontDescription& fontDescription, const AtomicString& passedFamily)
|
|
|