| 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 14f97e01a75c77032cb88607d5c67f479cc75b1d..5d590a7cc38153d7ec52282b94313eaa9d816174 100644
|
| --- a/third_party/WebKit/Source/platform/PODArena.h
|
| +++ b/third_party/WebKit/Source/platform/PODArena.h
|
| @@ -130,7 +130,7 @@ class PODArena final : public RefCounted<PODArena> {
|
| if (roundedSize > m_currentChunkSize)
|
| m_currentChunkSize = roundedSize;
|
| m_chunks.append(
|
| - wrapUnique(new Chunk(m_allocator.get(), m_currentChunkSize)));
|
| + WTF::wrapUnique(new Chunk(m_allocator.get(), m_currentChunkSize)));
|
| m_current = m_chunks.back().get();
|
| ptr = m_current->allocate(roundedSize);
|
| }
|
|
|