| Index: third_party/WebKit/Source/platform/heap/Handle.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Handle.h b/third_party/WebKit/Source/platform/heap/Handle.h
|
| index 47b61c748c9553a91e96e1ed6248bfa4580f92e0..b5e0eb399a1ed538ee1418d8a14089c51250026a 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Handle.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Handle.h
|
| @@ -512,10 +512,10 @@ public:
|
|
|
| template<typename Collection>
|
| class PersistentHeapCollectionBase : public Collection {
|
| - // We overload the various new and delete operators with using the WTF DefaultAllocator to ensure persistent
|
| + // We overload the various new and delete operators with using the WTF PartitionAllocator to ensure persistent
|
| // heap collections are always allocated off-heap. This allows persistent collections to be used in
|
| // DEFINE_STATIC_LOCAL et. al.
|
| - WTF_USE_ALLOCATOR(PersistentHeapCollectionBase, WTF::DefaultAllocator);
|
| + WTF_USE_ALLOCATOR(PersistentHeapCollectionBase, WTF::PartitionAllocator);
|
| public:
|
| PersistentHeapCollectionBase()
|
| {
|
|
|