Index: third_party/WebKit/Source/platform/heap/HeapTest.cpp |
diff --git a/third_party/WebKit/Source/platform/heap/HeapTest.cpp b/third_party/WebKit/Source/platform/heap/HeapTest.cpp |
index bca89194cef9b742235d0a5cdf30d302a5b257a7..c6765665770cc9e54a52b4d21a526aa07f36dc1f 100644 |
--- a/third_party/WebKit/Source/platform/heap/HeapTest.cpp |
+++ b/third_party/WebKit/Source/platform/heap/HeapTest.cpp |
@@ -775,7 +775,8 @@ public: |
void* operator new(size_t size) |
{ |
ThreadState* state = ThreadState::current(); |
- return Heap::allocateOnArenaIndex(state, size, BlinkGC::NodeArenaIndex, GCInfoTrait<IntNode>::index()); |
+ const char* typeName = WTF_HEAP_PROFILER_TYPE_NAME(IntNode); |
+ return Heap::allocateOnArenaIndex(state, size, BlinkGC::NodeArenaIndex, GCInfoTrait<IntNode>::index(), typeName); |
} |
static IntNode* create(int i) |