| Index: Source/bindings/tests/results/V8TestEventTarget.h | 
| diff --git a/Source/bindings/tests/results/V8TestEventTarget.h b/Source/bindings/tests/results/V8TestEventTarget.h | 
| index 581dc3d77f61491d966dde0147d93aa06fe8c909..88806aac29e2d54e034528dc2ca0a943683d2d2a 100644 | 
| --- a/Source/bindings/tests/results/V8TestEventTarget.h | 
| +++ b/Source/bindings/tests/results/V8TestEventTarget.h | 
| @@ -84,7 +84,7 @@ inline v8::Handle<v8::Value> toV8(TestEventTarget* impl, v8::Handle<v8::Object> | 
| } | 
|  | 
| template<typename CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestEventTarget* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestEventTarget* impl) | 
| { | 
| if (UNLIKELY(!impl)) { | 
| v8SetReturnValueNull(callbackInfo); | 
| @@ -92,12 +92,12 @@ inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestEventTarget* | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapper<V8TestEventTarget>(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, TestEventTarget* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestEventTarget* impl) | 
| { | 
| ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld); | 
| if (UNLIKELY(!impl)) { | 
| @@ -106,7 +106,7 @@ inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestE | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestEventTarget>(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); | 
| } | 
|  | 
| @@ -129,15 +129,15 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr<TestEventTarget > impl, v8::Handle< | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestEventTarget > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestEventTarget > impl) | 
| { | 
| -    v8SetReturnValue(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValue(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestEventTarget > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestEventTarget > impl) | 
| { | 
| -    v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValueForMainWorld(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo, class Wrappable> | 
|  |