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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.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/V0CustomElementProcessingStack.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.cpp
index 36c2d299708e1c16fd45aa6d7b07d2f88109f2ce..c43d4ef95a2b57118ce17ed4a13529430ba60e40 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.cpp
@@ -86,7 +86,7 @@ void V0CustomElementProcessingStack::enqueue(
callbackQueue->setOwner(currentElementQueue());
- m_flattenedProcessingStack.append(callbackQueue);
+ m_flattenedProcessingStack.push_back(callbackQueue);
++s_elementQueueEnd;
}

Powered by Google App Engine
This is Rietveld 408576698