Index: Source/bindings/tests/results/core/V8TestInterface2.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterface2.cpp b/Source/bindings/tests/results/core/V8TestInterface2.cpp |
index 3dfb5a07025701ba286bfbc480a52534955c0b54..12cc83bf796f934a7e716c7ab56d1a1a723e3624 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterface2.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterface2.cpp |
@@ -234,7 +234,8 @@ static void toStringMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& in |
static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
RefPtr<TestInterface2> impl = TestInterface2::create(); |
- v8::Handle<v8::Object> wrapper = wrapCustom(impl.get(), info.Holder(), info.GetIsolate()); |
+ v8::Handle<v8::Object> wrapper = info.Holder(); |
+ impl->associateWithWrapper(&V8TestInterface2::wrapperTypeInfo, wrapper, info.GetIsolate()); |
v8SetReturnValue(info, wrapper); |
} |