| Index: third_party/WebKit/Source/platform/heap/PagePool.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/PagePool.h b/third_party/WebKit/Source/platform/heap/PagePool.h
|
| index c33a8e22c4b9f00ea79d66b67f2e7dbc70d08330..34633ed4db49a51d3b6acd78c9fd154f6446a75b 100644
|
| --- a/third_party/WebKit/Source/platform/heap/PagePool.h
|
| +++ b/third_party/WebKit/Source/platform/heap/PagePool.h
|
| @@ -6,6 +6,7 @@
|
| #define PagePool_h
|
|
|
| #include "platform/heap/ThreadState.h"
|
| +#include "wtf/Allocator.h"
|
| #include "wtf/ThreadingPrimitives.h"
|
|
|
| namespace blink {
|
| @@ -15,6 +16,7 @@ class PageMemory;
|
|
|
| template<typename DataType>
|
| class PagePool {
|
| + USING_FAST_MALLOC(PagePool);
|
| protected:
|
| PagePool()
|
| {
|
| @@ -23,6 +25,7 @@ protected:
|
| }
|
|
|
| class PoolEntry {
|
| + USING_FAST_MALLOC(PoolEntry);
|
| public:
|
| PoolEntry(DataType* data, PoolEntry* next)
|
| : data(data)
|
|
|