Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp |
index fe16bac9ed586ff7627ecaa10c23236726d55f66..9748a0e108292ef9a46da9edb3eee46ee4f152eb 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp |
@@ -4072,7 +4072,7 @@ static void replaceableReadonlyLongAttributeAttributeGetterCallback(const v8::Fu |
static void replaceableReadonlyLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
v8::Local<v8::String> propertyName = v8AtomicString(info.GetIsolate(), "replaceableReadonlyLongAttribute"); |
- v8CallBoolean(info.This()->CreateDataProperty(info.GetIsolate()->GetCurrentContext(), propertyName, v8Value)); |
+ v8CallBoolean(info.Holder()->CreateDataProperty(info.GetIsolate()->GetCurrentContext(), propertyName, v8Value)); |
} |
static void replaceableReadonlyLongAttributeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |
@@ -9258,7 +9258,7 @@ static void callWithThisValueMethod(const v8::FunctionCallbackInfo<v8::Value>& i |
{ |
TestObject* impl = V8TestObject::toImpl(info.Holder()); |
ScriptState* scriptState = ScriptState::current(info.GetIsolate()); |
- impl->callWithThisValue(ScriptValue(scriptState, info.This())); |
+ impl->callWithThisValue(ScriptValue(scriptState, info.Holder())); |
} |
static void callWithThisValueMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |
@@ -11045,7 +11045,7 @@ static void forEachMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
thisArg = ScriptValue(ScriptState::current(info.GetIsolate()), info[1]); |
} |
ScriptState* scriptState = ScriptState::current(info.GetIsolate()); |
- impl->forEachForBinding(scriptState, ScriptValue(scriptState, info.This()), callback, thisArg, exceptionState); |
+ impl->forEachForBinding(scriptState, ScriptValue(scriptState, info.Holder()), callback, thisArg, exceptionState); |
if (exceptionState.hadException()) { |
exceptionState.throwIfNeeded(); |
return; |