| Index: third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h b/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
|
| index 122e224df7508c2833d2d8035a3d1e035e092d58..5f252542a2357c8e8a4c478cc5aa97e4a8fa674d 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
|
| @@ -41,7 +41,7 @@ class PLATFORM_EXPORT SegmentedFontData : public FontData {
|
| }
|
|
|
| void appendFace(const PassRefPtr<FontDataForRangeSet> fontDataForRangeSet) {
|
| - m_faces.append(fontDataForRangeSet);
|
| + m_faces.push_back(fontDataForRangeSet);
|
| }
|
| unsigned numFaces() const { return m_faces.size(); }
|
| PassRefPtr<FontDataForRangeSet> faceAt(unsigned i) const {
|
|
|