| Index: third_party/WebKit/Source/core/css/StyleSheetContents.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/StyleSheetContents.cpp b/third_party/WebKit/Source/core/css/StyleSheetContents.cpp
|
| index 85d49cc86b065a12fb381fb28318068dd82d4f2c..0e38ceab3898dbcb56d8971f303a46bbb436d259 100644
|
| --- a/third_party/WebKit/Source/core/css/StyleSheetContents.cpp
|
| +++ b/third_party/WebKit/Source/core/css/StyleSheetContents.cpp
|
| @@ -312,7 +312,7 @@ void StyleSheetContents::parserAddNamespace(const AtomicString& prefix,
|
| m_defaultNamespace = uri;
|
| return;
|
| }
|
| - PrefixNamespaceURIMap::AddResult result = m_namespaces.add(prefix, uri);
|
| + PrefixNamespaceURIMap::AddResult result = m_namespaces.insert(prefix, uri);
|
| if (result.isNewEntry)
|
| return;
|
| result.storedValue->value = uri;
|
|
|