| Index: Source/bindings/tests/results/V8TestCustomAccessors.h | 
| diff --git a/Source/bindings/tests/results/V8TestCustomAccessors.h b/Source/bindings/tests/results/V8TestCustomAccessors.h | 
| index ec3e34d04be7175e640c0b87406aa4cc75192357..77b165bf96ed90db59fb1a176f2f48264b01a89f 100644 | 
| --- a/Source/bindings/tests/results/V8TestCustomAccessors.h | 
| +++ b/Source/bindings/tests/results/V8TestCustomAccessors.h | 
| @@ -89,7 +89,7 @@ inline v8::Handle<v8::Value> toV8(TestCustomAccessors* impl, v8::Handle<v8::Obje | 
| } | 
|  | 
| template<typename CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestCustomAccessors* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestCustomAccessors* impl) | 
| { | 
| if (UNLIKELY(!impl)) { | 
| v8SetReturnValueNull(callbackInfo); | 
| @@ -97,12 +97,12 @@ inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestCustomAccesso | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapper<V8TestCustomAccessors>(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<typename CallbackInfo> | 
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestCustomAccessors* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestCustomAccessors* impl) | 
| { | 
| ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld); | 
| if (UNLIKELY(!impl)) { | 
| @@ -111,7 +111,7 @@ inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestC | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestCustomAccessors>(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); | 
| } | 
|  | 
| @@ -134,15 +134,15 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr<TestCustomAccessors > impl, v8::Han | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestCustomAccessors > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestCustomAccessors > impl) | 
| { | 
| -    v8SetReturnValue(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValue(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestCustomAccessors > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestCustomAccessors > impl) | 
| { | 
| -    v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValueForMainWorld(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo, class Wrappable> | 
|  |