| 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(); }
|
|
|