Index: Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp |
index 1f77fb9ba2d85d684fbebc73f62898bd7268d821..35c78c463bb6f2bf9478ad0e0f5680e75cf5bf4f 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp |
@@ -109,14 +109,14 @@ v8::Handle<v8::FunctionTemplate> V8TestInterfaceConstructor3::domTemplate(v8::Is |
return result; |
} |
-bool V8TestInterfaceConstructor3::hasInstance(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate) |
+bool V8TestInterfaceConstructor3::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> V8TestInterfaceConstructor3::findInstanceInPrototypeChain(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate) |
+v8::Handle<v8::Object> V8TestInterfaceConstructor3::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) |
{ |
- return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, jsValue); |
+ return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); |
} |
TestInterfaceConstructor3* V8TestInterfaceConstructor3::toNativeWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) |