| Index: third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h b/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h
|
| index a77f00a9e9e1110e9b7060f615cea4d1e8ee9343..77fa5541e63b9e3b0cccc2b6ca6aa40fc128292e 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/FallbackListCompositeKey.h
|
| @@ -47,7 +47,7 @@ struct FallbackListCompositeKey {
|
| m_auxiliaryBitmapFields(0) {}
|
|
|
| void add(FontCacheKey key) {
|
| - m_fontCacheKeys.append(key);
|
| + m_fontCacheKeys.push_back(key);
|
| // Djb2 with the first bit reserved for deleted.
|
| m_hash = (((m_hash << 5) + m_hash) + key.hash()) << 1;
|
| }
|
|
|