Index: Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp |
index 3ba1f9c59079a83e1ce622e6f1e99a87f0a4baf5..6267c072708c779d275f912a153a427d54a24cdf 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp |
@@ -43,7 +43,7 @@ static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info) |
} |
RefPtr<TestInterfaceConstructor4> impl = TestInterfaceConstructor4::create(testInterface4Arg); |
v8::Handle<v8::Object> wrapper = info.Holder(); |
- V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceConstructor4>(impl.release(), &V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate()); |
+ impl->associateWithWrapper(&V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate()); |
v8SetReturnValue(info, wrapper); |
} |
@@ -58,7 +58,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) |
} |
RefPtr<TestInterfaceConstructor4> impl = TestInterfaceConstructor4::create(scalarValueStringArg); |
v8::Handle<v8::Object> wrapper = info.Holder(); |
- V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceConstructor4>(impl.release(), &V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate()); |
+ impl->associateWithWrapper(&V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate()); |
v8SetReturnValue(info, wrapper); |
} |