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

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

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase Created 3 years, 9 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/html/parser/HTMLDocumentParser.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
index 9c2a9302531b97feebbd15ed31c730b02dfe355d..51efd1d1cddafb2341a24317f983430eaea4ebbc 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
@@ -386,7 +386,7 @@ void HTMLDocumentParser::notifyPendingTokenizedChunks() {
}
for (auto& chunk : pendingChunks)
- m_speculations.append(std::move(chunk));
+ m_speculations.push_back(std::move(chunk));
if (!isPaused() && !isScheduledForResume()) {
if (m_tasksWereSuspended)

Powered by Google App Engine
This is Rietveld 408576698