| Index: Source/core/css/CSSFontFace.cpp
|
| diff --git a/Source/core/css/CSSFontFace.cpp b/Source/core/css/CSSFontFace.cpp
|
| index bfb995e50ed1211448bb7f4a455aaa6fa43822c4..5911c07963d467d1401be69feee18e79b72c4d5e 100644
|
| --- a/Source/core/css/CSSFontFace.cpp
|
| +++ b/Source/core/css/CSSFontFace.cpp
|
| @@ -84,6 +84,14 @@ void CSSFontFace::fontLoaded(CSSFontFaceSource* source)
|
| m_segmentedFontFace->fontLoaded(this);
|
| }
|
|
|
| +void CSSFontFace::fontLoadWaitLimitExceeded(CSSFontFaceSource* source)
|
| +{
|
| + if (!isValid() || source != m_sources.first())
|
| + return;
|
| + if (m_segmentedFontFace)
|
| + m_segmentedFontFace->fontLoadWaitLimitExceeded(this);
|
| +}
|
| +
|
| PassRefPtr<SimpleFontData> CSSFontFace::getFontData(const FontDescription& fontDescription)
|
| {
|
| if (!isValid())
|
|
|