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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.h

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.h
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.h
index 95e28d40f45da2e9d059e40589c218027b3f87ef..d3b4215aa55621c321716ecbeb854b9528cebe94 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.h
@@ -77,7 +77,7 @@ class CORE_EXPORT V0CustomElementProcessingStack
// crash.
V0CustomElementCallbackQueue* sentinel = 0;
for (size_t i = 0; i < kNumSentinels; i++)
- m_flattenedProcessingStack.append(sentinel);
+ m_flattenedProcessingStack.push_back(sentinel);
DCHECK_EQ(s_elementQueueEnd, m_flattenedProcessingStack.size());
}

Powered by Google App Engine
This is Rietveld 408576698