| Index: third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLDocument.cpp b/third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| index f77537087bd2761168c6f9a19e04f5c456a7cd21..b1ed5e1b3cd62f73725e9e780411210621ecc13f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| @@ -164,7 +164,7 @@ void HTMLDocument::removeItemFromMap(HashCountedSet<AtomicString>& map,
|
| const AtomicString& name) {
|
| if (name.isEmpty())
|
| return;
|
| - map.remove(name);
|
| + map.erase(name);
|
| if (LocalFrame* f = frame()) {
|
| f->script()
|
| .windowProxy(DOMWrapperWorld::mainWorld())
|
|
|