| Index: third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/PartitionAllocator.cpp b/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| index 2befd349f15c99fbc1ea1b4874e880e63f195cc2..a762993b5b9c12c54db361280e2c027763c82dda 100644
|
| --- a/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| +++ b/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
|
| @@ -36,19 +36,16 @@
|
|
|
| namespace WTF {
|
|
|
| -void* PartitionAllocator::allocateBacking(size_t size)
|
| -{
|
| - return Partitions::bufferMalloc(size);
|
| +void* PartitionAllocator::allocateBacking(size_t size) {
|
| + return Partitions::bufferMalloc(size);
|
| }
|
|
|
| -void PartitionAllocator::freeVectorBacking(void* address)
|
| -{
|
| - Partitions::bufferFree(address);
|
| +void PartitionAllocator::freeVectorBacking(void* address) {
|
| + Partitions::bufferFree(address);
|
| }
|
|
|
| -void PartitionAllocator::freeHashTableBacking(void* address)
|
| -{
|
| - Partitions::bufferFree(address);
|
| +void PartitionAllocator::freeHashTableBacking(void* address) {
|
| + Partitions::bufferFree(address);
|
| }
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|