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