| Index: Source/bindings/v8/custom/V8Int32ArrayCustom.h
|
| diff --git a/Source/bindings/v8/custom/V8Int32ArrayCustom.h b/Source/bindings/v8/custom/V8Int32ArrayCustom.h
|
| index 91b90e136cc7e6504f9056f356d8f4a4f52e54fb..e853370269a539c617542c31574c775b35ca1db6 100644
|
| --- a/Source/bindings/v8/custom/V8Int32ArrayCustom.h
|
| +++ b/Source/bindings/v8/custom/V8Int32ArrayCustom.h
|
| @@ -74,15 +74,15 @@ inline v8::Handle<v8::Value> toV8(Int32Array* impl, v8::Handle<v8::Object> creat
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, Int32Array* impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, Int32Array* impl)
|
| {
|
| - V8TypedArray<Int32Array>::v8SetReturnValue(callbackInfo, impl, creationContext);
|
| + V8TypedArray<Int32Array>::v8SetReturnValue(callbackInfo, impl);
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, Int32Array* impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, Int32Array* impl)
|
| {
|
| - V8TypedArray<Int32Array>::v8SetReturnValueForMainWorld(callbackInfo, impl, creationContext);
|
| + V8TypedArray<Int32Array>::v8SetReturnValueForMainWorld(callbackInfo, impl);
|
| }
|
|
|
| template<class CallbackInfo, class Wrappable>
|
| @@ -97,15 +97,15 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr< Int32Array > impl, v8::Handle<v8::
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<Int32Array> impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<Int32Array> impl)
|
| {
|
| - v8SetReturnValue(callbackInfo, impl.get(), creationContext);
|
| + v8SetReturnValue(callbackInfo, impl.get());
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<Int32Array> impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<Int32Array> impl)
|
| {
|
| - v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext);
|
| + v8SetReturnValueForMainWorld(callbackInfo, impl.get());
|
| }
|
|
|
| template<class CallbackInfo, class Wrappable>
|
|
|