Index: third_party/WebKit/Source/platform/PODArena.h |
diff --git a/third_party/WebKit/Source/platform/PODArena.h b/third_party/WebKit/Source/platform/PODArena.h |
index 5d590a7cc38153d7ec52282b94313eaa9d816174..b3653dc99986457e3c53754019c3854ec8ba4c84 100644 |
--- a/third_party/WebKit/Source/platform/PODArena.h |
+++ b/third_party/WebKit/Source/platform/PODArena.h |
@@ -129,7 +129,7 @@ class PODArena final : public RefCounted<PODArena> { |
if (!ptr) { |
if (roundedSize > m_currentChunkSize) |
m_currentChunkSize = roundedSize; |
- m_chunks.append( |
+ m_chunks.push_back( |
WTF::wrapUnique(new Chunk(m_allocator.get(), m_currentChunkSize))); |
m_current = m_chunks.back().get(); |
ptr = m_current->allocate(roundedSize); |