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

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

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase Created 3 years, 11 months 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/CustomElementReactionStack.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
index b4641f05c01730103bd4eb4afa11b771e6fd7a5a..8937bcc07b388f127f97a47100d3aa568ccafccd 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
@@ -41,7 +41,7 @@ DEFINE_TRACE_WRAPPERS(CustomElementReactionStack) {
}
void CustomElementReactionStack::push() {
- m_stack.append(nullptr);
+ m_stack.push_back(nullptr);
}
void CustomElementReactionStack::popInvokingReactions() {
@@ -73,7 +73,7 @@ void CustomElementReactionStack::enqueue(Member<ElementQueue>& queue,
CustomElementReaction* reaction) {
if (!queue)
queue = new ElementQueue();
- queue->append(element);
+ queue->push_back(element);
CustomElementReactionQueue* reactions = m_map.get(element);
if (!reactions) {

Powered by Google App Engine
This is Rietveld 408576698