| Index: Source/bindings/v8/custom/V8ArrayBufferCustom.h | 
| diff --git a/Source/bindings/v8/custom/V8ArrayBufferCustom.h b/Source/bindings/v8/custom/V8ArrayBufferCustom.h | 
| index d619ebc93bc6f0c43368778c3a4ce38adccecae4..aedd04cb9b51f8292bff7553079b7a299016181c 100644 | 
| --- a/Source/bindings/v8/custom/V8ArrayBufferCustom.h | 
| +++ b/Source/bindings/v8/custom/V8ArrayBufferCustom.h | 
| @@ -100,7 +100,7 @@ inline v8::Handle<v8::Value> toV8(ArrayBuffer* impl, v8::Handle<v8::Object> crea | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, ArrayBuffer* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, ArrayBuffer* impl) | 
| { | 
| if (UNLIKELY(!impl)) { | 
| v8SetReturnValueNull(callbackInfo); | 
| @@ -108,12 +108,12 @@ inline void v8SetReturnValue(const CallbackInfo& callbackInfo, ArrayBuffer* impl | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapper<V8ArrayBuffer>(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<class CallbackInfo> | 
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, ArrayBuffer* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, ArrayBuffer* impl) | 
| { | 
| ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld); | 
| if (UNLIKELY(!impl)) { | 
| @@ -122,7 +122,7 @@ inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, Array | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8ArrayBuffer>(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); | 
| } | 
|  | 
| @@ -145,15 +145,15 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr< ArrayBuffer > impl, v8::Handle<v8: | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr< ArrayBuffer > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr< ArrayBuffer > impl) | 
| { | 
| -    v8SetReturnValue(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValue(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr< ArrayBuffer > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr< ArrayBuffer > impl) | 
| { | 
| -    v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValueForMainWorld(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo, class Wrappable> | 
|  |