| Index: Source/bindings/tests/results/V8TestObject.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp
|
| index 427a000e4ba10444527c45fd70e15552b5acc7e3..f332001687e4503c7849155a42a5fc7c17955409 100644
|
| --- a/Source/bindings/tests/results/V8TestObject.cpp
|
| +++ b/Source/bindings/tests/results/V8TestObject.cpp
|
| @@ -7635,7 +7635,7 @@ static void callWithScriptStateScriptArgumentsVoidMethodMethod(const v8::Functio
|
| {
|
| TestObject* impl = V8TestObject::toNative(info.Holder());
|
| ScriptState* scriptState = ScriptState::current(info.GetIsolate());
|
| - RefPtr<ScriptArguments> scriptArguments(createScriptArguments(info, 0));
|
| + RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 0));
|
| impl->callWithScriptStateScriptArgumentsVoidMethod(scriptState, scriptArguments.release());
|
| }
|
|
|
| @@ -7654,14 +7654,14 @@ static void callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArgMethod
|
| v8::TryCatch block;
|
| if (UNLIKELY(info.Length() <= 0)) {
|
| ScriptState* scriptState = ScriptState::current(info.GetIsolate());
|
| - RefPtr<ScriptArguments> scriptArguments(createScriptArguments(info, 1));
|
| + RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
|
| impl->callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArg(scriptState, scriptArguments.release());
|
| return;
|
| }
|
| TONATIVE_VOID_INTERNAL(optionalBooleanArg, info[0]->BooleanValue());
|
| }
|
| ScriptState* scriptState = ScriptState::current(info.GetIsolate());
|
| - RefPtr<ScriptArguments> scriptArguments(createScriptArguments(info, 1));
|
| + RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
|
| impl->callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArg(scriptState, scriptArguments.release(), optionalBooleanArg);
|
| }
|
|
|
|
|