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

Unified Diff: third_party/WebKit/Source/modules/fetch/BytesConsumer.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/modules/fetch/BytesConsumer.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/BytesConsumer.cpp b/third_party/WebKit/Source/modules/fetch/BytesConsumer.cpp
index 429b3eb0eb70d2e1617ceae3b1c48d35178fa0d3..1d4adcf85c1f5bdadeb5a070fb64b8d4a3d83c72 100644
--- a/third_party/WebKit/Source/modules/fetch/BytesConsumer.cpp
+++ b/third_party/WebKit/Source/modules/fetch/BytesConsumer.cpp
@@ -223,7 +223,7 @@ class TeeHelper final : public GarbageCollectedFinalized<TeeHelper>,
void enqueue(Chunk* chunk) {
if (m_isCancelled)
return;
- m_chunks.append(chunk);
+ m_chunks.push_back(chunk);
}
bool isEmpty() const { return m_chunks.isEmpty(); }

Powered by Google App Engine
This is Rietveld 408576698