Index: Source/bindings/core/v8/V8PerIsolateData.cpp |
diff --git a/Source/bindings/core/v8/V8PerIsolateData.cpp b/Source/bindings/core/v8/V8PerIsolateData.cpp |
index 60420989c06c785084fac723e8cc0ecdbf6cd024..7f375e2e1563725e6d4da431d55808c0c4cb549c 100644 |
--- a/Source/bindings/core/v8/V8PerIsolateData.cpp |
+++ b/Source/bindings/core/v8/V8PerIsolateData.cpp |
@@ -66,6 +66,18 @@ static void useCounterCallback(v8::Isolate* isolate, v8::Isolate::UseCounterFeat |
case v8::Isolate::kLegacyConst: |
UseCounter::count(callingExecutionContext(isolate), UseCounter::LegacyConst); |
break; |
+ case v8::Isolate::kMarkDequeOverflow: |
+ UseCounter::count(callingExecutionContext(isolate), UseCounter::MarkDequeOverflow); |
+ break; |
+ case v8::Isolate::kStoreBufferOverflow: |
+ UseCounter::count(callingExecutionContext(isolate), UseCounter::StoreBufferOverflow); |
+ break; |
+ case v8::Isolate::kSlotsBufferOverflow: |
+ UseCounter::count(callingExecutionContext(isolate), UseCounter::SlotsBufferOverflow); |
+ break; |
+ case v8::Isolate::kObjectObserve: |
+ UseCounter::count(callingExecutionContext(isolate), UseCounter::ObjectObserve); |
+ break; |
default: |
// This can happen if V8 has added counters that this version of Blink |
// does not know about. It's harmless. |