| Index: third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp b/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| index df63203e021fc5782be8b0709aa155243943398a..165c658ed577db3ef3b8c7d58270de6467e7c13b 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| @@ -233,7 +233,7 @@ const FontData* FontFallbackList::fontDataAt(
|
| ASSERT(FontCache::fontCache()->generation() == m_generation);
|
| RefPtr<FontData> result = getFontData(fontDescription, m_familyIndex);
|
| if (result) {
|
| - m_fontList.append(result);
|
| + m_fontList.push_back(result);
|
| if (result->isLoadingFallback())
|
| m_hasLoadingFallback = true;
|
| }
|
|
|