| Index: third_party/WebKit/Source/platform/heap/Heap.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
|
| index 98fdb22639ca358e8e194eab588a2211c63a054d..aef3a38c3864ee668a77cbda6e6bcaa6b0f951a2 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Heap.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Heap.h
|
| @@ -621,8 +621,9 @@ Address ThreadHeap::allocate(size_t size, bool eagerlySweep) {
|
| ThreadState* state = ThreadStateFor<ThreadingTrait<T>::Affinity>::state();
|
| const char* typeName = WTF_HEAP_PROFILER_TYPE_NAME(T);
|
| return ThreadHeap::allocateOnArenaIndex(
|
| - state, size, eagerlySweep ? BlinkGC::EagerSweepArenaIndex
|
| - : ThreadHeap::arenaIndexForObjectSize(size),
|
| + state, size,
|
| + eagerlySweep ? BlinkGC::EagerSweepArenaIndex
|
| + : ThreadHeap::arenaIndexForObjectSize(size),
|
| GCInfoTrait<T>::index(), typeName);
|
| }
|
|
|
|
|