| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskRunQueue.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskRunQueue.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskRunQueue.cpp
|
| index 4af1b327d2945c02e313446ef4b1a152f6301f0a..500b78f0a2ba2344df6b0c8913a4ac1dc00dc032 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskRunQueue.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskRunQueue.cpp
|
| @@ -36,7 +36,7 @@ void V0CustomElementMicrotaskRunQueue::requestDispatchIfNeeded()
|
| {
|
| if (m_dispatchIsPending || isEmpty())
|
| return;
|
| - Microtask::enqueueMicrotask(WTF::bind(&V0CustomElementMicrotaskRunQueue::dispatch, WeakPersistentThisPointer<V0CustomElementMicrotaskRunQueue>(this)));
|
| + Microtask::enqueueMicrotask(WTF::bind(&V0CustomElementMicrotaskRunQueue::dispatch, wrapWeakPersistent(this)));
|
| m_dispatchIsPending = true;
|
| }
|
|
|
|
|