| Index: Source/bindings/tests/results/V8TestInterface.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterface.cpp b/Source/bindings/tests/results/V8TestInterface.cpp
|
| index c34b055f0716e8315fe841aaa38c56224b3cde87..38fce73b0382855020a9296aabf38eeedf979f80 100644
|
| --- a/Source/bindings/tests/results/V8TestInterface.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterface.cpp
|
| @@ -559,7 +559,7 @@ static void implementsMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& a
|
| RefPtr<TestObj> result = TestImplements::implementsMethod2(scriptContext, imp, strArg, objArg, es);
|
| if (es.throwIfNeeded())
|
| return;
|
| - v8SetReturnValue(args, result.release(), args.Holder());
|
| + v8SetReturnValue(args, result.release());
|
| }
|
|
|
| static void implementsMethod2MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& args)
|
| @@ -625,7 +625,7 @@ static void supplementalMethod2Method(const v8::FunctionCallbackInfo<v8::Value>&
|
| RefPtr<TestObj> result = TestPartialInterface::supplementalMethod2(scriptContext, imp, strArg, objArg, es);
|
| if (es.throwIfNeeded())
|
| return;
|
| - v8SetReturnValue(args, result.release(), args.Holder());
|
| + v8SetReturnValue(args, result.release());
|
| }
|
|
|
| #endif // ENABLE(Condition11) || ENABLE(Condition12)
|
|
|