Index: Source/bindings/tests/results/V8TestObject.h |
diff --git a/Source/bindings/tests/results/V8TestObject.h b/Source/bindings/tests/results/V8TestObject.h |
index 36ffc14749a3785c3498224b3fc57a122cd1f992..8dc923e5966b238fee7d69a93825552beca166e8 100644 |
--- a/Source/bindings/tests/results/V8TestObject.h |
+++ b/Source/bindings/tests/results/V8TestObject.h |
@@ -39,7 +39,7 @@ public: |
return fromInternalPointer(object->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)); |
} |
static void derefObject(void*); |
- static WrapperTypeInfo wrapperTypeInfo; |
+ static const WrapperTypeInfo wrapperTypeInfo; |
static EventTarget* toEventTarget(v8::Handle<v8::Object>); |
static void customMethodMethodCustom(const v8::FunctionCallbackInfo<v8::Value>&); |
static void customMethodWithArgsMethodCustom(const v8::FunctionCallbackInfo<v8::Value>&); |
@@ -69,7 +69,7 @@ private: |
template<> |
class WrapperTypeTraits<TestObj > { |
public: |
- static WrapperTypeInfo* wrapperTypeInfo() { return &V8TestObject::wrapperTypeInfo; } |
+ static const WrapperTypeInfo* wrapperTypeInfo() { return &V8TestObject::wrapperTypeInfo; } |
}; |
inline v8::Handle<v8::Object> wrap(TestObj* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) |