| Index: third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp b/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
|
| index 8e7a752720b45b56d834a48b14ccebe4d2bc6a43..43350caabe273ee755cb9bfda43f13cfea0302c9 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
|
| @@ -59,10 +59,10 @@ void WindowProxyManagerBase::clearForNavigation() {
|
|
|
| void WindowProxyManagerBase::releaseGlobals(
|
| HashMap<DOMWrapperWorld*, v8::Local<v8::Object>>& map) {
|
| - map.add(&m_windowProxy->world(), m_windowProxy->releaseGlobal());
|
| + map.insert(&m_windowProxy->world(), m_windowProxy->releaseGlobal());
|
| for (auto& entry : m_isolatedWorlds)
|
| - map.add(&entry.value->world(),
|
| - windowProxy(entry.value->world())->releaseGlobal());
|
| + map.insert(&entry.value->world(),
|
| + windowProxy(entry.value->world())->releaseGlobal());
|
| }
|
|
|
| void WindowProxyManagerBase::setGlobals(
|
|
|