Index: third_party/WebKit/Source/core/dom/ChildListMutationScope.cpp |
diff --git a/third_party/WebKit/Source/core/dom/ChildListMutationScope.cpp b/third_party/WebKit/Source/core/dom/ChildListMutationScope.cpp |
index 3b51022644c1dacf33db06c31c2267b3f4b6e38d..cde42b7163adf67397df83807181d78c8dfeb80d 100644 |
--- a/third_party/WebKit/Source/core/dom/ChildListMutationScope.cpp |
+++ b/third_party/WebKit/Source/core/dom/ChildListMutationScope.cpp |
@@ -46,8 +46,8 @@ typedef HeapHashMap<Member<Node>, Member<ChildListMutationAccumulator>> Accumula |
static AccumulatorMap& accumulatorMap() |
{ |
- DEFINE_STATIC_LOCAL(Persistent<AccumulatorMap>, map, (new AccumulatorMap())); |
- return *map; |
+ DEFINE_STATIC_LOCAL(AccumulatorMap, map, (new AccumulatorMap)); |
+ return map; |
} |
ChildListMutationAccumulator::ChildListMutationAccumulator(RawPtr<Node> target, RawPtr<MutationObserverInterestGroup> observers) |