| Index: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h
|
| index 0990fde1d72775ac6839790a296e6a9f96ecdcfb..ccd87d5e5cbf8735ee518c62a3292abf30a64a06 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h
|
| @@ -16,7 +16,7 @@
|
|
|
| namespace blink {
|
|
|
| -class CustomElementMicrotaskQueueBase : public RefCountedWillBeGarbageCollectedFinalized<CustomElementMicrotaskQueueBase> {
|
| +class CustomElementMicrotaskQueueBase : public GarbageCollectedFinalized<CustomElementMicrotaskQueueBase> {
|
| WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskQueueBase);
|
| public:
|
| virtual ~CustomElementMicrotaskQueueBase() { }
|
| @@ -34,7 +34,7 @@ protected:
|
| CustomElementMicrotaskQueueBase() : m_inDispatch(false) { }
|
| virtual void doDispatch() = 0;
|
|
|
| - WillBeHeapVector<OwnPtrWillBeMember<CustomElementMicrotaskStep>> m_queue;
|
| + HeapVector<Member<CustomElementMicrotaskStep>> m_queue;
|
| bool m_inDispatch;
|
| };
|
|
|
|
|