Index: third_party/WebKit/Source/core/css/CSSValue.h |
diff --git a/third_party/WebKit/Source/core/css/CSSValue.h b/third_party/WebKit/Source/core/css/CSSValue.h |
index 3b41ecd61af2cb5e4fc319cb0461e4a0996ea857..8b52da11e1acb41fcacb1cecfa7dfd0b96221ba0 100644 |
--- a/third_party/WebKit/Source/core/css/CSSValue.h |
+++ b/third_party/WebKit/Source/core/css/CSSValue.h |
@@ -44,7 +44,8 @@ public: |
static void* allocateObject(size_t size, bool isEager) |
{ |
ThreadState* state = ThreadStateFor<ThreadingTrait<CSSValue>::Affinity>::state(); |
- return Heap::allocateOnArenaIndex(state, size, isEager ? BlinkGC::EagerSweepArenaIndex : BlinkGC::CSSValueArenaIndex, GCInfoTrait<CSSValue>::index()); |
+ const char typeName[] = "blink::CSSValue"; |
+ return Heap::allocateOnArenaIndex(state, size, isEager ? BlinkGC::EagerSweepArenaIndex : BlinkGC::CSSValueArenaIndex, GCInfoTrait<CSSValue>::index(), typeName); |
} |
#else |
USING_FAST_MALLOC_WITH_TYPE_NAME(blink::CSSValue); |