Index: Source/bindings/tests/results/V8TestCustomAccessors.cpp |
diff --git a/Source/bindings/tests/results/V8TestCustomAccessors.cpp b/Source/bindings/tests/results/V8TestCustomAccessors.cpp |
index fd5af262b63ddaa7eda385e578de2c20b2bb5392..dd647cbed242182bd14c9abec4036511645bc10b 100644 |
--- a/Source/bindings/tests/results/V8TestCustomAccessors.cpp |
+++ b/Source/bindings/tests/results/V8TestCustomAccessors.cpp |
@@ -84,63 +84,63 @@ static void anotherFunctionMethodCallback(const v8::FunctionCallbackInfo<v8::Val |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); |
TestCustomAccessorsV8Internal::anotherFunctionMethod(info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMIndexedProperty"); |
V8TestCustomAccessors::indexedPropertyGetterCustom(index, info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMIndexedProperty"); |
V8TestCustomAccessors::indexedPropertySetterCustom(index, jsValue, info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void indexedPropertyDeleterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMIndexedProperty"); |
V8TestCustomAccessors::indexedPropertyDeleterCustom(index, info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty"); |
V8TestCustomAccessors::namedPropertyGetterCustom(name, info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void namedPropertySetterCallback(v8::Local<v8::String> name, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty"); |
V8TestCustomAccessors::namedPropertySetterCustom(name, jsValue, info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void namedPropertyDeleterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Boolean>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty"); |
V8TestCustomAccessors::namedPropertyDeleterCustom(name, info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void namedPropertyEnumeratorCallback(const v8::PropertyCallbackInfo<v8::Array>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty"); |
V8TestCustomAccessors::namedPropertyEnumeratorCustom(info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
static void namedPropertyQueryCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty"); |
V8TestCustomAccessors::namedPropertyQueryCustom(name, info); |
- TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution"); |
+ TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
} // namespace TestCustomAccessorsV8Internal |