| Index: Source/bindings/tests/results/V8TestObject.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp
|
| index 14e2c60c59862f7c7d31e91d603c0fd9f9e463a9..0d8fa7a79a60adf6a06c4fc36791ce6960f18a42 100644
|
| --- a/Source/bindings/tests/results/V8TestObject.cpp
|
| +++ b/Source/bindings/tests/results/V8TestObject.cpp
|
| @@ -7714,7 +7714,7 @@ static void callWithScriptStateScriptArgumentsVoidMethodMethod(const v8::Functio
|
| {
|
| TestObject* impl = V8TestObject::toNative(info.Holder());
|
| ScriptState* scriptState = ScriptState::current(info.GetIsolate());
|
| - RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 0));
|
| + RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 0));
|
| impl->callWithScriptStateScriptArgumentsVoidMethod(scriptState, scriptArguments.release());
|
| }
|
|
|
| @@ -7734,14 +7734,14 @@ static void callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArgMethod
|
| V8RethrowTryCatchScope rethrow(block);
|
| if (UNLIKELY(info.Length() <= 0)) {
|
| ScriptState* scriptState = ScriptState::current(info.GetIsolate());
|
| - RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
|
| + RefPtrWillBeRawPtr<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(scriptState, info, 1));
|
| + RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
|
| impl->callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArg(scriptState, scriptArguments.release(), optionalBooleanArg);
|
| }
|
|
|
|
|