| Index: Source/bindings/tests/results/V8TestInterfaceEventConstructor.h
 | 
| diff --git a/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h b/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h
 | 
| index 0e050a5ae7d9a2df1c0f2ef70e134bb6b164031d..cb5cc349d478a840e569fe902e00e4f91b14124f 100644
 | 
| --- a/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h
 | 
| +++ b/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h
 | 
| @@ -56,8 +56,7 @@ public:
 | 
|      static const WrapperTypeInfo wrapperTypeInfo;
 | 
|      static void derefObject(void*);
 | 
|      static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
 | 
| -    static const int persistentHandleIndex = v8DefaultWrapperInternalFieldCount + 0;
 | 
| -    static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 1;
 | 
| +    static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
 | 
|      static inline void* toInternalPointer(TestInterfaceEventConstructor* impl)
 | 
|      {
 | 
|          return V8Event::toInternalPointer(impl);
 | 
| @@ -72,7 +71,7 @@ public:
 | 
|  
 | 
|  private:
 | 
|      friend v8::Handle<v8::Object> wrap(TestInterfaceEventConstructor*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
 | 
| -    static v8::Handle<v8::Object> createWrapper(PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
 | 
| +    static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterfaceEventConstructor>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
 | 
|  };
 | 
|  
 | 
|  inline v8::Handle<v8::Object> wrap(TestInterfaceEventConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
 | 
| @@ -132,25 +131,25 @@ inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface
 | 
|      v8SetReturnValue(callbackInfo, wrapper);
 | 
|  }
 | 
|  
 | 
| -inline v8::Handle<v8::Value> toV8(PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
 | 
| +inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfaceEventConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
 | 
|  {
 | 
|      return toV8(impl.get(), creationContext, isolate);
 | 
|  }
 | 
|  
 | 
|  template<class CallbackInfo>
 | 
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl)
 | 
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceEventConstructor> impl)
 | 
|  {
 | 
|      v8SetReturnValue(callbackInfo, impl.get());
 | 
|  }
 | 
|  
 | 
|  template<class CallbackInfo>
 | 
| -inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl)
 | 
| +inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceEventConstructor> impl)
 | 
|  {
 | 
|      v8SetReturnValueForMainWorld(callbackInfo, impl.get());
 | 
|  }
 | 
|  
 | 
|  template<class CallbackInfo, class Wrappable>
 | 
| -inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl, Wrappable* wrappable)
 | 
| +inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceEventConstructor> impl, Wrappable* wrappable)
 | 
|  {
 | 
|      v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
 | 
|  }
 | 
| 
 |