| Index: Source/bindings/tests/results/V8TestSerializedScriptValueInterface.h
|
| diff --git a/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.h b/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.h
|
| index fb3895490a3aa18295de94e209652a99bf6fc3df..62133407c2d748fc5fe577c7b5e780574eac4089 100644
|
| --- a/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.h
|
| +++ b/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.h
|
| @@ -82,7 +82,7 @@ inline v8::Handle<v8::Value> toV8(TestSerializedScriptValueInterface* impl, v8::
|
| }
|
|
|
| template<typename CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestSerializedScriptValueInterface* impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestSerializedScriptValueInterface* impl)
|
| {
|
| if (UNLIKELY(!impl)) {
|
| v8SetReturnValueNull(callbackInfo);
|
| @@ -90,12 +90,12 @@ inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestSerializedScr
|
| }
|
| if (DOMDataStore::setReturnValueFromWrapper<V8TestSerializedScriptValueInterface>(callbackInfo.GetReturnValue(), impl))
|
| return;
|
| - v8::Handle<v8::Object> wrapper = wrap(impl, creationContext, callbackInfo.GetIsolate());
|
| + v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
|
| v8SetReturnValue(callbackInfo, wrapper);
|
| }
|
|
|
| template<typename CallbackInfo>
|
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestSerializedScriptValueInterface* impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestSerializedScriptValueInterface* impl)
|
| {
|
| ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
|
| if (UNLIKELY(!impl)) {
|
| @@ -104,7 +104,7 @@ inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestS
|
| }
|
| if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestSerializedScriptValueInterface>(callbackInfo.GetReturnValue(), impl))
|
| return;
|
| - v8::Handle<v8::Value> wrapper = wrap(impl, creationContext, callbackInfo.GetIsolate());
|
| + v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
|
| v8SetReturnValue(callbackInfo, wrapper);
|
| }
|
|
|
| @@ -127,15 +127,15 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr<TestSerializedScriptValueInterface
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestSerializedScriptValueInterface > impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestSerializedScriptValueInterface > impl)
|
| {
|
| - v8SetReturnValue(callbackInfo, impl.get(), creationContext);
|
| + v8SetReturnValue(callbackInfo, impl.get());
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestSerializedScriptValueInterface > impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestSerializedScriptValueInterface > impl)
|
| {
|
| - v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext);
|
| + v8SetReturnValueForMainWorld(callbackInfo, impl.get());
|
| }
|
|
|
| template<class CallbackInfo, class Wrappable>
|
|
|