| Index: third_party/WebKit/Source/platform/LayoutLocale.cpp
|
| diff --git a/third_party/WebKit/Source/platform/LayoutLocale.cpp b/third_party/WebKit/Source/platform/LayoutLocale.cpp
|
| index 909bdb00928874bbdefcc83246d92c5f266ed5bb..b4153d364ab07b8cfe48e1d2c86e1de02623ec98 100644
|
| --- a/third_party/WebKit/Source/platform/LayoutLocale.cpp
|
| +++ b/third_party/WebKit/Source/platform/LayoutLocale.cpp
|
| @@ -127,7 +127,7 @@ const LayoutLocale* LayoutLocale::get(const AtomicString& locale) {
|
| if (locale.isNull())
|
| return nullptr;
|
|
|
| - auto result = getLocaleMap().add(locale, nullptr);
|
| + auto result = getLocaleMap().insert(locale, nullptr);
|
| if (result.isNewEntry)
|
| result.storedValue->value = adoptRef(new LayoutLocale(locale));
|
| return result.storedValue->value.get();
|
|
|