Index: Source/bindings/tests/results/V8TestInterfaceConstructor.h |
diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor.h b/Source/bindings/tests/results/V8TestInterfaceConstructor.h |
index c5dcfd82b32e615f02d7558f21e05b744c65ff79..6e516f87b3af5dff10934e0e27f3afad061b5abe 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceConstructor.h |
+++ b/Source/bindings/tests/results/V8TestInterfaceConstructor.h |
@@ -7,6 +7,7 @@ |
#ifndef V8TestInterfaceConstructor_h |
#define V8TestInterfaceConstructor_h |
+#include "bindings/core/v8/ScriptWrappable.h" |
#include "bindings/core/v8/V8Binding.h" |
#include "bindings/core/v8/V8DOMWrapper.h" |
#include "bindings/core/v8/WrapperTypeInfo.h" |
@@ -28,21 +29,21 @@ public: |
static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*); |
static TestInterfaceConstructor* toNative(v8::Handle<v8::Object> object) |
{ |
- return fromInternalPointer(object->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)); |
+ return fromInternalPointer(blink::toInternalPointer(object)); |
} |
static TestInterfaceConstructor* toNativeWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>); |
static const WrapperTypeInfo wrapperTypeInfo; |
- static void derefObject(void*); |
+ static void derefObject(ScriptWrappableBase* internalPointer); |
static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0; |
- static inline void* toInternalPointer(TestInterfaceConstructor* impl) |
+ static inline ScriptWrappableBase* toInternalPointer(TestInterfaceConstructor* impl) |
{ |
- return impl; |
+ return reinterpret_cast<ScriptWrappableBase*>(static_cast<void*>(impl)); |
} |
- static inline TestInterfaceConstructor* fromInternalPointer(void* object) |
+ static inline TestInterfaceConstructor* fromInternalPointer(ScriptWrappableBase* internalPointer) |
{ |
- return static_cast<TestInterfaceConstructor*>(object); |
+ return reinterpret_cast<TestInterfaceConstructor*>(static_cast<void*>(internalPointer)); |
} |
static void installPerContextEnabledProperties(v8::Handle<v8::Object>, TestInterfaceConstructor*, v8::Isolate*) { } |
static void installPerContextEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { } |