Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp

Issue 2574773002: Migrate WTF::Vector::append() to ::push_back() [part 4 of N] (Closed)
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698