| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp
|
| index d7e8fe8663d57d02273108591701436172f72234..072d0f3b608ac7e72f3c9e11638f919efcc2723f 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp
|
| @@ -47,9 +47,7 @@ static void lengthAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& inf
|
|
|
| static void lengthAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMGetter");
|
| TestIntegerIndexedGlobalV8Internal::lengthAttributeGetter(info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void lengthAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info)
|
| @@ -66,9 +64,7 @@ static void lengthAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Functi
|
| static void lengthAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| v8::Local<v8::Value> v8Value = info[0];
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMSetter");
|
| TestIntegerIndexedGlobalV8Internal::lengthAttributeSetter(v8Value, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void voidMethodDocumentMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| @@ -91,65 +87,47 @@ static void voidMethodDocumentMethod(const v8::FunctionCallbackInfo<v8::Value>&
|
|
|
| static void voidMethodDocumentMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMMethod");
|
| TestIntegerIndexedGlobalV8Internal::voidMethodDocumentMethod(info);
|
| - 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");
|
| V8TestIntegerIndexedGlobal::indexedPropertyGetterCustom(index, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMIndexedProperty");
|
| V8TestIntegerIndexedGlobal::indexedPropertySetterCustom(index, v8Value, info);
|
| - 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");
|
| V8TestIntegerIndexedGlobal::indexedPropertyDeleterCustom(index, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void namedPropertyGetterCallback(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMNamedProperty");
|
| V8TestIntegerIndexedGlobal::namedPropertyGetterCustom(name, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void namedPropertySetterCallback(v8::Local<v8::Name> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMNamedProperty");
|
| V8TestIntegerIndexedGlobal::namedPropertySetterCustom(name, v8Value, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void namedPropertyQueryCallback(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Integer>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMNamedProperty");
|
| V8TestIntegerIndexedGlobal::namedPropertyQueryCustom(name, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void namedPropertyDeleterCallback(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Boolean>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMNamedProperty");
|
| V8TestIntegerIndexedGlobal::namedPropertyDeleterCustom(name, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| static void namedPropertyEnumeratorCallback(const v8::PropertyCallbackInfo<v8::Array>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMNamedProperty");
|
| V8TestIntegerIndexedGlobal::namedPropertyEnumeratorCustom(info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
|
|
| } // namespace TestIntegerIndexedGlobalV8Internal
|
|
|