Index: Source/bindings/tests/results/V8TestInterfacePython2.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfacePython2.cpp b/Source/bindings/tests/results/V8TestInterfacePython2.cpp |
index 35f580dc7dae46d7dc4bec3ff8dd98942f4a8032..64c4af46379efb71c55eb8bc48c67578a0fc8601 100644 |
--- a/Source/bindings/tests/results/V8TestInterfacePython2.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfacePython2.cpp |
@@ -80,9 +80,8 @@ template <typename T> void V8_USE(T) { } |
static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
RefPtr<TestInterfacePython2> impl = TestInterfacePython2::create(); |
- v8::Handle<v8::Object> wrapper = info.Holder(); |
- V8DOMWrapper::associateObjectWithWrapper<V8TestInterfacePython2>(impl.release(), &V8TestInterfacePython2::wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent); |
+ v8::Handle<v8::Object> wrapper = wrap(impl.get(), info.Holder(), info.GetIsolate()); |
v8SetReturnValue(info, wrapper); |
} |