| Index: Source/bindings/tests/results/V8TestSpecialOperationsCustom.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestSpecialOperationsCustom.cpp b/Source/bindings/tests/results/V8TestSpecialOperationsCustom.cpp
|
| index fd22662d43bcc06fe21f4d9ca40adc04992c7e98..2de902af8d972641039404bad9fcc00a282c88bd 100644
|
| --- a/Source/bindings/tests/results/V8TestSpecialOperationsCustom.cpp
|
| +++ b/Source/bindings/tests/results/V8TestSpecialOperationsCustom.cpp
|
| @@ -107,17 +107,17 @@ static void namedPropertySetterCallback(v8::Local<v8::String> name, v8::Local<v8
|
| TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution");
|
| }
|
|
|
| -static void namedPropertyDeleterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Boolean>& info)
|
| +static void namedPropertyQueryCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info)
|
| {
|
| TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty");
|
| - V8TestSpecialOperationsCustom::namedPropertyDeleterCustom(name, info);
|
| + V8TestSpecialOperationsCustom::namedPropertyQueryCustom(name, info);
|
| TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution");
|
| }
|
|
|
| -static void namedPropertyQueryCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info)
|
| +static void namedPropertyDeleterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Boolean>& info)
|
| {
|
| TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty");
|
| - V8TestSpecialOperationsCustom::namedPropertyQueryCustom(name, info);
|
| + V8TestSpecialOperationsCustom::namedPropertyDeleterCustom(name, info);
|
| TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution");
|
| }
|
|
|
|
|