Index: Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp |
diff --git a/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp b/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp |
index d1f4a61f2f04f3bddb9b95da9cbc89aad19dde24..a690b97a6e18150e37a3fe94bd2995d3c978d747 100644 |
--- a/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp |
+++ b/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp |
@@ -58,21 +58,21 @@ static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCall |
TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
-static void indexedPropertySetter(uint32_t index, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<v8::Value>& info) |
+static void indexedPropertySetter(uint32_t index, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TestSpecialOperationsInt* impl = V8TestSpecialOperationsInt::toNative(info.Holder()); |
- V8TRYCATCH_EXCEPTION_VOID(unsigned, propertyValue, toUInt32(jsValue, exceptionState), exceptionState); |
+ V8TRYCATCH_EXCEPTION_VOID(unsigned, propertyValue, toUInt32(v8Value, exceptionState), exceptionState); |
ExceptionState exceptionState(ExceptionState::IndexedSetterContext, "TestSpecialOperationsInt", info.Holder(), info.GetIsolate()); |
bool result = impl->anonymousIndexedSetter(index, propertyValue); |
if (!result) |
return; |
- v8SetReturnValue(info, jsValue); |
+ v8SetReturnValue(info, v8Value); |
} |
-static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<v8::Value>& info) |
+static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMIndexedProperty"); |
- TestSpecialOperationsIntV8Internal::indexedPropertySetter(index, jsValue, info); |
+ TestSpecialOperationsIntV8Internal::indexedPropertySetter(index, v8Value, info); |
TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
@@ -98,7 +98,7 @@ static void namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::Pr |
TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
-static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<v8::Value>& info) |
+static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
if (info.Holder()->HasRealNamedProperty(name)) |
return; |
@@ -107,19 +107,19 @@ static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> |
TestSpecialOperationsInt* impl = V8TestSpecialOperationsInt::toNative(info.Holder()); |
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name); |
- V8TRYCATCH_EXCEPTION_VOID(unsigned, propertyValue, toUInt32(jsValue, exceptionState), exceptionState); |
+ V8TRYCATCH_EXCEPTION_VOID(unsigned, propertyValue, toUInt32(v8Value, exceptionState), exceptionState); |
v8::String::Utf8Value namedProperty(name); |
ExceptionState exceptionState(ExceptionState::SetterContext, *namedProperty, "TestSpecialOperationsInt", info.Holder(), info.GetIsolate()); |
bool result = impl->anonymousNamedSetter(propertyName, propertyValue); |
if (!result) |
return; |
- v8SetReturnValue(info, jsValue); |
+ v8SetReturnValue(info, v8Value); |
} |
-static void namedPropertySetterCallback(v8::Local<v8::String> name, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<v8::Value>& info) |
+static void namedPropertySetterCallback(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMNamedProperty"); |
- TestSpecialOperationsIntV8Internal::namedPropertySetter(name, jsValue, info); |
+ TestSpecialOperationsIntV8Internal::namedPropertySetter(name, v8Value, info); |
TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); |
} |
@@ -201,14 +201,14 @@ v8::Handle<v8::FunctionTemplate> V8TestSpecialOperationsInt::domTemplate(v8::Iso |
return result; |
} |
-bool V8TestSpecialOperationsInt::hasInstance(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate) |
+bool V8TestSpecialOperationsInt::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> V8TestSpecialOperationsInt::findInstanceInPrototypeChain(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate) |
+v8::Handle<v8::Object> V8TestSpecialOperationsInt::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) |
{ |
- return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, jsValue); |
+ return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); |
} |
TestSpecialOperationsInt* V8TestSpecialOperationsInt::toNativeWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) |