| Index: Source/bindings/tests/results/V8TestExtendedEvent.h | 
| diff --git a/Source/bindings/tests/results/V8TestExtendedEvent.h b/Source/bindings/tests/results/V8TestExtendedEvent.h | 
| index c99123884c9dbcebc0a540f1bf8118e860d5f781..7e563d470a54a0f2b7ad51f0209b9ee59bff3137 100644 | 
| --- a/Source/bindings/tests/results/V8TestExtendedEvent.h | 
| +++ b/Source/bindings/tests/results/V8TestExtendedEvent.h | 
| @@ -85,7 +85,7 @@ inline v8::Handle<v8::Value> toV8(Event* impl, v8::Handle<v8::Object> creationCo | 
| } | 
|  | 
| template<typename CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, Event* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, Event* impl) | 
| { | 
| if (UNLIKELY(!impl)) { | 
| v8SetReturnValueNull(callbackInfo); | 
| @@ -93,12 +93,12 @@ inline void v8SetReturnValue(const CallbackInfo& callbackInfo, Event* impl, v8:: | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapper<V8TestExtendedEvent>(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, Event* impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, Event* impl) | 
| { | 
| ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld); | 
| if (UNLIKELY(!impl)) { | 
| @@ -107,7 +107,7 @@ inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, Event | 
| } | 
| if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestExtendedEvent>(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); | 
| } | 
|  | 
| @@ -130,15 +130,15 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr<Event > impl, v8::Handle<v8::Object | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<Event > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<Event > impl) | 
| { | 
| -    v8SetReturnValue(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValue(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo> | 
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<Event > impl, v8::Handle<v8::Object> creationContext) | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<Event > impl) | 
| { | 
| -    v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext); | 
| +    v8SetReturnValueForMainWorld(callbackInfo, impl.get()); | 
| } | 
|  | 
| template<class CallbackInfo, class Wrappable> | 
|  |