| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| index a1061215b25cc947bac8ecf21b440f1c33383ab6..bcd043422284afab08f6ceaa1106b6e8742d8a19 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| @@ -36,7 +36,7 @@ namespace blink {
|
|
|
| void V0CustomElementAsyncImportMicrotaskQueue::enqueue(
|
| V0CustomElementMicrotaskStep* step) {
|
| - m_queue.append(step);
|
| + m_queue.push_back(step);
|
| }
|
|
|
| void V0CustomElementAsyncImportMicrotaskQueue::doDispatch() {
|
| @@ -44,7 +44,7 @@ void V0CustomElementAsyncImportMicrotaskQueue::doDispatch() {
|
|
|
| for (auto& step : m_queue) {
|
| if (V0CustomElementMicrotaskStep::Processing == step->process())
|
| - remaining.append(step.release());
|
| + remaining.push_back(step.release());
|
| }
|
|
|
| m_queue.swap(remaining);
|
|
|