| Index: third_party/WebKit/Source/core/dom/Node.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.cpp b/third_party/WebKit/Source/core/dom/Node.cpp
|
| index 8d856aa37fbed1f693a497702e43c948e6b8ed2a..07286e35f089759bb7fb328af8fec0f9c75ffd7c 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Node.cpp
|
| @@ -1805,7 +1805,7 @@ void Node::removeAllEventListenersRecursively()
|
| using EventTargetDataMap = WillBeHeapHashMap<RawPtrWillBeWeakMember<Node>, OwnPtrWillBeMember<EventTargetData>>;
|
| static EventTargetDataMap& eventTargetDataMap()
|
| {
|
| - DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<EventTargetDataMap>, map, (adoptPtrWillBeNoop(new EventTargetDataMap())));
|
| + DEFINE_STATIC_LOCAL_NO_REGISTER(OwnPtrWillBePersistent<EventTargetDataMap>, map, (adoptPtrWillBeNoop(new EventTargetDataMap())));
|
| return *map;
|
| }
|
|
|
|
|