| Index: Source/core/css/CSSSegmentedFontFace.cpp
|
| diff --git a/Source/core/css/CSSSegmentedFontFace.cpp b/Source/core/css/CSSSegmentedFontFace.cpp
|
| index 4c48caf4336cbea32a380cb084f125678633917e..2d01cdd43480b777d8b1b4d8bc3fcd825e9d808f 100644
|
| --- a/Source/core/css/CSSSegmentedFontFace.cpp
|
| +++ b/Source/core/css/CSSSegmentedFontFace.cpp
|
| @@ -159,24 +159,6 @@ PassRefPtr<FontData> CSSSegmentedFontFace::getFontData(const FontDescription& fo
|
| return nullptr;
|
| }
|
|
|
| -bool CSSSegmentedFontFace::isLoading() const
|
| -{
|
| - for (const auto& fontFace : m_fontFaces) {
|
| - if (fontFace->loadStatus() == FontFace::Loading)
|
| - return true;
|
| - }
|
| - return false;
|
| -}
|
| -
|
| -bool CSSSegmentedFontFace::isLoaded() const
|
| -{
|
| - for (const auto& fontFace : m_fontFaces) {
|
| - if (fontFace->loadStatus() != FontFace::Loaded)
|
| - return false;
|
| - }
|
| - return true;
|
| -}
|
| -
|
| void CSSSegmentedFontFace::willUseFontData(const FontDescription& fontDescription, UChar32 character)
|
| {
|
| for (FontFaceList::reverse_iterator it = m_fontFaces.rbegin(); it != m_fontFaces.rend(); ++it) {
|
|
|