| Index: Source/bindings/tests/results/V8TestCustomAccessors.h | 
| diff --git a/Source/bindings/tests/results/V8TestCustomAccessors.h b/Source/bindings/tests/results/V8TestCustomAccessors.h | 
| index 1fd0389899cf20ee1faefb36327a1824f507f4b9..4148ccf3595321d8fc4947ad69ef5ac2d4b4e27e 100644 | 
| --- a/Source/bindings/tests/results/V8TestCustomAccessors.h | 
| +++ b/Source/bindings/tests/results/V8TestCustomAccessors.h | 
| @@ -38,7 +38,7 @@ public: | 
| return fromInternalPointer(object->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)); | 
| } | 
| static void derefObject(void*); | 
| -    static WrapperTypeInfo info; | 
| +    static WrapperTypeInfo wrapperTypeInfo; | 
| static void indexedPropertyGetterCustom(uint32_t, const v8::PropertyCallbackInfo<v8::Value>&); | 
| static void indexedPropertySetterCustom(uint32_t, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>&); | 
| static void indexedPropertyDeleterCustom(uint32_t, const v8::PropertyCallbackInfo<v8::Boolean>&); | 
| @@ -68,7 +68,7 @@ private: | 
| template<> | 
| class WrapperTypeTraits<TestCustomAccessors > { | 
| public: | 
| -    static WrapperTypeInfo* info() { return &V8TestCustomAccessors::info; } | 
| +    static WrapperTypeInfo* wrapperTypeInfo() { return &V8TestCustomAccessors::wrapperTypeInfo; } | 
| }; | 
|  | 
| inline v8::Handle<v8::Object> wrap(TestCustomAccessors* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) | 
|  |