| Index: third_party/WebKit/Source/core/dom/Node.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
|
| index cea958ce9932b7a1bfa5c8157907e4e199e75a42..4feada648537d6a62b2260dbec7a726fabc6198d 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.h
|
| +++ b/third_party/WebKit/Source/core/dom/Node.h
|
| @@ -184,7 +184,7 @@ public:
|
| static void* allocateObject(size_t size, bool isEager)
|
| {
|
| ThreadState* state = ThreadStateFor<ThreadingTrait<Node>::Affinity>::state();
|
| - return Heap::allocateOnHeapIndex(state, size, isEager ? BlinkGC::EagerSweepHeapIndex : BlinkGC::NodeHeapIndex, GCInfoTrait<EventTarget>::index());
|
| + return Heap::allocateOnArenaIndex(state, size, isEager ? BlinkGC::EagerSweepArenaIndex : BlinkGC::NodeArenaIndex, GCInfoTrait<EventTarget>::index());
|
| }
|
| #else // !ENABLE(OILPAN)
|
| // All Nodes are placed in their own heap partition for security.
|
|
|