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