| Index: Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
|
| diff --git a/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp b/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
|
| index 5aae3a6a09e10e28b5a883560d82a1b1ff02d94c..3fcf748a7fb9fddb89e041f7df2cd196ff95dade 100644
|
| --- a/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
|
| +++ b/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
|
| @@ -35,14 +35,14 @@
|
|
|
| namespace WebCore {
|
|
|
| -void CustomElementAsyncImportMicrotaskQueue::enqueue(PassOwnPtr<CustomElementMicrotaskImportStep> step)
|
| +void CustomElementAsyncImportMicrotaskQueue::enqueue(PassOwnPtrWillBeRawPtr<CustomElementMicrotaskImportStep> step)
|
| {
|
| m_queue.append(step);
|
| }
|
|
|
| void CustomElementAsyncImportMicrotaskQueue::doDispatch()
|
| {
|
| - WillBeHeapVector<OwnPtr<CustomElementMicrotaskStep> > remaining;
|
| + WillBeHeapVector<OwnPtrWillBeMember<CustomElementMicrotaskStep> > remaining;
|
|
|
| for (unsigned i = 0; i < m_queue.size(); ++i) {
|
| if (CustomElementMicrotaskStep::Processing == m_queue[i]->process())
|
|
|