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 a2699fad2f45c1debea89e2e1e2251fde825ef6d..794aefb9c6e44b7c84da61d707819da1a1027d97 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.h |
+++ b/third_party/WebKit/Source/core/dom/Node.h |
@@ -182,7 +182,7 @@ public: |
{ |
ThreadState* state = ThreadStateFor<ThreadingTrait<Node>::Affinity>::state(); |
const char typeName[] = "blink::Node"; |
- return Heap::allocateOnArenaIndex(state, size, isEager ? BlinkGC::EagerSweepArenaIndex : BlinkGC::NodeArenaIndex, GCInfoTrait<EventTarget>::index(), typeName); |
+ return ThreadHeap::allocateOnArenaIndex(state, size, isEager ? BlinkGC::EagerSweepArenaIndex : BlinkGC::NodeArenaIndex, GCInfoTrait<EventTarget>::index(), typeName); |
} |
#else // !ENABLE(OILPAN) |
// All Nodes are placed in their own heap partition for security. |