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 794aefb9c6e44b7c84da61d707819da1a1027d97..a2699fad2f45c1debea89e2e1e2251fde825ef6d 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.h |
+++ b/third_party/WebKit/Source/core/dom/Node.h |
@@ -182,7 +182,7 @@ |
{ |
ThreadState* state = ThreadStateFor<ThreadingTrait<Node>::Affinity>::state(); |
const char typeName[] = "blink::Node"; |
- return ThreadHeap::allocateOnArenaIndex(state, size, isEager ? BlinkGC::EagerSweepArenaIndex : BlinkGC::NodeArenaIndex, GCInfoTrait<EventTarget>::index(), typeName); |
+ return Heap::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. |