| Index: Source/bindings/v8/custom/V8Int8ArrayCustom.h
|
| diff --git a/Source/bindings/v8/custom/V8Int8ArrayCustom.h b/Source/bindings/v8/custom/V8Int8ArrayCustom.h
|
| index cca994ca539d6d8e983c4335715292c31a5042cf..8a94261df35416c864f89f9723087c03318531ce 100644
|
| --- a/Source/bindings/v8/custom/V8Int8ArrayCustom.h
|
| +++ b/Source/bindings/v8/custom/V8Int8ArrayCustom.h
|
| @@ -74,15 +74,15 @@ inline v8::Handle<v8::Value> toV8(Int8Array* impl, v8::Handle<v8::Object> creati
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, Int8Array* impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, Int8Array* impl)
|
| {
|
| - V8TypedArray<Int8Array>::v8SetReturnValue(callbackInfo, impl, creationContext);
|
| + V8TypedArray<Int8Array>::v8SetReturnValue(callbackInfo, impl);
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, Int8Array* impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, Int8Array* impl)
|
| {
|
| - V8TypedArray<Int8Array>::v8SetReturnValueForMainWorld(callbackInfo, impl, creationContext);
|
| + V8TypedArray<Int8Array>::v8SetReturnValueForMainWorld(callbackInfo, impl);
|
| }
|
|
|
| template<class CallbackInfo, class Wrappable>
|
| @@ -97,15 +97,15 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr< Int8Array > impl, v8::Handle<v8::O
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<Int8Array> impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<Int8Array> impl)
|
| {
|
| - v8SetReturnValue(callbackInfo, impl.get(), creationContext);
|
| + v8SetReturnValue(callbackInfo, impl.get());
|
| }
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<Int8Array> impl, v8::Handle<v8::Object> creationContext)
|
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<Int8Array> impl)
|
| {
|
| - v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext);
|
| + v8SetReturnValueForMainWorld(callbackInfo, impl.get());
|
| }
|
|
|
| template<class CallbackInfo, class Wrappable>
|
|
|