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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.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/CustomElementDefinition.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
index abafc42e59fde2e848db114ea2986012010f61f9..e86a4e1416c5c669c55c48a072c3cdc207983e2f 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
@@ -126,7 +126,7 @@ CustomElementDefinition::ConstructionStackScope::ConstructionStackScope(
Element* element)
: m_constructionStack(definition->m_constructionStack), m_element(element) {
// Push the construction stack.
- m_constructionStack.append(element);
+ m_constructionStack.push_back(element);
m_depth = m_constructionStack.size();
}

Powered by Google App Engine
This is Rietveld 408576698