| Index: third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp b/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| index b9a4a4b7437158db2ab17eb961a816741b8d2524..8ced2f1405db08de855e1b89ae0ec7354334c65f 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| @@ -102,7 +102,7 @@ PassRefPtr<FontData> CSSSegmentedFontFace::getFontData(
|
| fontDescription.cacheKey(FontFaceCreationParams(), desiredTraits);
|
|
|
| RefPtr<SegmentedFontData>& fontData =
|
| - m_fontDataTable.add(key, nullptr).storedValue->value;
|
| + m_fontDataTable.insert(key, nullptr).storedValue->value;
|
| if (fontData && fontData->numFaces()) {
|
| // No release, we have a reference to an object in the cache which should
|
| // retain the ref count it has.
|
|
|