| Index: third_party/WebKit/Source/core/svg/SVGElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGElement.cpp
|
| index 7ece432b099f220e2880a59adae166d48b974e8f..ed460a7a56d2ee5c9314a673322b25b5fd99adeb 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGElement.cpp
|
| @@ -538,8 +538,8 @@ void SVGElement::removeInstanceMapping(SVGElement* instance)
|
|
|
| static HeapHashSet<WeakMember<SVGElement>>& emptyInstances()
|
| {
|
| - DEFINE_STATIC_LOCAL(Persistent<HeapHashSet<WeakMember<SVGElement>>>, emptyInstances, (new HeapHashSet<WeakMember<SVGElement>>()));
|
| - return *emptyInstances;
|
| + DEFINE_STATIC_LOCAL(HeapHashSet<WeakMember<SVGElement>>, emptyInstances, (new HeapHashSet<WeakMember<SVGElement>>));
|
| + return emptyInstances;
|
| }
|
|
|
| const HeapHashSet<WeakMember<SVGElement>>& SVGElement::instancesForElement() const
|
|
|