| Index: third_party/WebKit/Source/core/svg/SVGTreeScopeResources.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTreeScopeResources.cpp b/third_party/WebKit/Source/core/svg/SVGTreeScopeResources.cpp
|
| index 2a997401aebd2efe0cda0faee68ae9f9cd91e6ca..eacac72899bd8aa87c840109d3a82ee8ff9b3cb9 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTreeScopeResources.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTreeScopeResources.cpp
|
| @@ -52,7 +52,7 @@ void SVGTreeScopeResources::addPendingResource(const AtomicString& id,
|
| return;
|
|
|
| HeapHashMap<AtomicString, Member<SVGPendingElements>>::AddResult result =
|
| - m_pendingResources.add(id, nullptr);
|
| + m_pendingResources.insert(id, nullptr);
|
| if (result.isNewEntry)
|
| result.storedValue->value = new SVGPendingElements;
|
| result.storedValue->value->insert(element);
|
|
|