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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.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/CustomElementReactionQueue.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
index c54fd41a03b2d3fcfc9775f790edfb719f6ce1e8..342f91e42234369cd029c78a050f8c0fc0b11592 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
@@ -19,7 +19,7 @@ DEFINE_TRACE(CustomElementReactionQueue) {
}
void CustomElementReactionQueue::add(CustomElementReaction* reaction) {
- m_reactions.append(reaction);
+ m_reactions.push_back(reaction);
}
// There is one queue per element, so this could be invoked

Powered by Google App Engine
This is Rietveld 408576698