| Index: Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp
|
| index d0120d14882f656b269763c110f427f31cfa15a5..438f84d478e0a925db552d0562d0de99c7e68e8c 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceConstructor4.cpp
|
| @@ -57,7 +57,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.get()->associateWithWrapper(&V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate());
|
| v8SetReturnValue(info, wrapper);
|
| }
|
|
|
| @@ -72,7 +72,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.get()->associateWithWrapper(&V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate());
|
| v8SetReturnValue(info, wrapper);
|
| }
|
|
|
|
|