| Index: third_party/WebKit/Source/core/css/CSSFontFace.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSFontFace.cpp b/third_party/WebKit/Source/core/css/CSSFontFace.cpp
|
| index 838fb9935e9f3699dc80e6d7c990dacf32c9ad8f..cc0dd450c9b43403eaded99220355c29132a8e35 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSFontFace.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSFontFace.cpp
|
| @@ -70,15 +70,15 @@ void CSSFontFace::fontLoaded(RemoteFontFaceSource* source)
|
| }
|
|
|
| if (m_segmentedFontFace)
|
| - m_segmentedFontFace->fontLoaded(this);
|
| + m_segmentedFontFace->fontFaceInvalidated();
|
| }
|
|
|
| -void CSSFontFace::fontLoadWaitLimitExceeded(RemoteFontFaceSource* source)
|
| +void CSSFontFace::fontDataInvalidated(RemoteFontFaceSource* source)
|
| {
|
| if (!isValid() || source != m_sources.first())
|
| return;
|
| if (m_segmentedFontFace)
|
| - m_segmentedFontFace->fontLoadWaitLimitExceeded(this);
|
| + m_segmentedFontFace->fontFaceInvalidated();
|
| }
|
|
|
| PassRefPtr<SimpleFontData> CSSFontFace::getFontData(const FontDescription& fontDescription)
|
|
|