| Index: third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/DefaultAllocator.cpp b/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| similarity index 89%
|
| rename from third_party/WebKit/Source/wtf/DefaultAllocator.cpp
|
| rename to third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| index e0f53243f0a51fb8f85a8ef010c38208f8135bdb..2befd349f15c99fbc1ea1b4874e880e63f195cc2 100644
|
| --- a/third_party/WebKit/Source/wtf/DefaultAllocator.cpp
|
| +++ b/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| @@ -29,24 +29,24 @@
|
| */
|
|
|
| #include "config.h"
|
| -#include "wtf/DefaultAllocator.h"
|
| +#include "wtf/PartitionAllocator.h"
|
|
|
| #include "wtf/PartitionAlloc.h"
|
| #include "wtf/Partitions.h"
|
|
|
| namespace WTF {
|
|
|
| -void* DefaultAllocator::allocateBacking(size_t size)
|
| +void* PartitionAllocator::allocateBacking(size_t size)
|
| {
|
| return Partitions::bufferMalloc(size);
|
| }
|
|
|
| -void DefaultAllocator::freeVectorBacking(void* address)
|
| +void PartitionAllocator::freeVectorBacking(void* address)
|
| {
|
| Partitions::bufferFree(address);
|
| }
|
|
|
| -void DefaultAllocator::freeHashTableBacking(void* address)
|
| +void PartitionAllocator::freeHashTableBacking(void* address)
|
| {
|
| Partitions::bufferFree(address);
|
| }
|
|
|