| Index: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
 | 
| index 50e3ba06483d688d504f5ccb672561548d427e38..3b1f6e6d032f4936fdabdd6f1e39bb7b733f3a9f 100644
 | 
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
 | 
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
 | 
| @@ -20,11 +20,9 @@ CustomElementMicrotaskDispatcher::CustomElementMicrotaskDispatcher()
 | 
|  {
 | 
|  }
 | 
|  
 | 
| -DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(CustomElementMicrotaskDispatcher)
 | 
| -
 | 
|  CustomElementMicrotaskDispatcher& CustomElementMicrotaskDispatcher::instance()
 | 
|  {
 | 
| -    DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<CustomElementMicrotaskDispatcher>, instance, (adoptPtrWillBeNoop(new CustomElementMicrotaskDispatcher())));
 | 
| +    DEFINE_STATIC_LOCAL(Persistent<CustomElementMicrotaskDispatcher>, instance, (new CustomElementMicrotaskDispatcher()));
 | 
|      return *instance;
 | 
|  }
 | 
|  
 | 
| 
 |