Index: Source/bindings/tests/results/V8TestInterfacePython3.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfacePython3.cpp b/Source/bindings/tests/results/V8TestInterfacePython3.cpp |
index e1cd6cb5f474bb7de103b0211009e30ba0d24ebb..0ca1d69f9081e4acaa685df2229a7bd179a0afaa 100644 |
--- a/Source/bindings/tests/results/V8TestInterfacePython3.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfacePython3.cpp |
@@ -75,14 +75,14 @@ v8::Handle<v8::FunctionTemplate> V8TestInterfacePython3::domTemplate(v8::Isolate |
return result; |
} |
-bool V8TestInterfacePython3::hasInstance(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate) |
+bool V8TestInterfacePython3::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) |
{ |
- return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, jsValue); |
+ return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Value); |
} |
-v8::Handle<v8::Object> V8TestInterfacePython3::findInstanceInPrototypeChain(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate) |
+v8::Handle<v8::Object> V8TestInterfacePython3::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) |
{ |
- return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, jsValue); |
+ return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); |
} |
TestInterfacePython3* V8TestInterfacePython3::toNativeWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) |