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

Unified Diff: third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp

Issue 2583233002: Migrate WTF::Vector::append() to ::push_back() [part 7 of N] (Closed)
Patch Set: 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/html/parser/TokenizedChunkQueue.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp b/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
index f358e85057abe0b3d772d4e531741574b37004b9..2efb34c2afdd651204428f6b1632d73dc735c177 100644
--- a/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
+++ b/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
@@ -47,7 +47,7 @@ bool TokenizedChunkQueue::enqueue(
std::max(m_peakPendingTokenCount, m_pendingTokenCount);
bool wasEmpty = m_pendingChunks.isEmpty();
- m_pendingChunks.append(std::move(chunk));
+ m_pendingChunks.push_back(std::move(chunk));
m_peakPendingChunkCount =
std::max(m_peakPendingChunkCount, m_pendingChunks.size());

Powered by Google App Engine
This is Rietveld 408576698