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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.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/V0CustomElementSyncMicrotaskQueue.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp
index d891e69b1c50e99fded329bcfbba24d71cd2d405..0c898e8f5eb88e4613c68f080711183bf0c1ded8 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementSyncMicrotaskQueue.cpp
@@ -8,7 +8,7 @@ namespace blink {
void V0CustomElementSyncMicrotaskQueue::enqueue(
V0CustomElementMicrotaskStep* step) {
- m_queue.append(step);
+ m_queue.push_back(step);
}
void V0CustomElementSyncMicrotaskQueue::doDispatch() {

Powered by Google App Engine
This is Rietveld 408576698