Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Unified Diff: Source/bindings/tests/results/V8TestSpecialOperationsCustom.cpp

Issue 149993003: IDL compiler: [Custom=PropertyEnumerator] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");
}

Powered by Google App Engine
This is Rietveld 408576698