| 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 ca4ea9c0ebf241d8ab744d4b002e5a13f4e893ef..d150876669f803b34bda63c7240443988078f303 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.h
|
| +++ b/third_party/WebKit/Source/core/dom/Node.h
|
| @@ -182,7 +182,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.
|
|
|