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