Index: Source/bindings/tests/results/core/V8TestTypedefs.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestTypedefs.cpp b/Source/bindings/tests/results/core/V8TestTypedefs.cpp |
index 5f38567cf702c9fb1a6fe2f24d0cea4c5c50ae75..6532a027ffcd14cf053e172b412bc37d2276322b 100644 |
--- a/Source/bindings/tests/results/core/V8TestTypedefs.cpp |
+++ b/Source/bindings/tests/results/core/V8TestTypedefs.cpp |
@@ -141,7 +141,7 @@ static void voidMethodTestCallbackInterfaceTypeArgMethod(const v8::FunctionCallb |
return; |
} |
TestTypedefs* impl = V8TestTypedefs::toImpl(info.Holder()); |
- OwnPtrWillBeRawPtr<TestCallbackInterface> testCallbackInterfaceTypeArg = nullptr;; |
+ TestCallbackInterface* testCallbackInterfaceTypeArg = nullptr;; |
{ |
if (info.Length() <= 0 || !info[0]->IsFunction()) { |
V8ThrowException::throwTypeError(ExceptionMessages::failedToExecute("voidMethodTestCallbackInterfaceTypeArg", "TestTypedefs", "The callback provided as parameter 1 is not a function."), info.GetIsolate()); |
@@ -149,7 +149,7 @@ static void voidMethodTestCallbackInterfaceTypeArgMethod(const v8::FunctionCallb |
} |
testCallbackInterfaceTypeArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), ScriptState::current(info.GetIsolate())); |
} |
- impl->voidMethodTestCallbackInterfaceTypeArg(testCallbackInterfaceTypeArg.release()); |
+ impl->voidMethodTestCallbackInterfaceTypeArg(testCallbackInterfaceTypeArg); |
} |
static void voidMethodTestCallbackInterfaceTypeArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |