| Index: Source/bindings/tests/results/V8TestTypedefs.h
|
| diff --git a/Source/bindings/tests/results/V8TestTypedefs.h b/Source/bindings/tests/results/V8TestTypedefs.h
|
| index 1f9050668a0f584089d1fa8c43f00b719c4918df..6d909b8a06e7d98d451600de1c205c5960d4dc55 100644
|
| --- a/Source/bindings/tests/results/V8TestTypedefs.h
|
| +++ b/Source/bindings/tests/results/V8TestTypedefs.h
|
| @@ -7,6 +7,7 @@
|
| #ifndef V8TestTypedefs_h
|
| #define V8TestTypedefs_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"
|
| @@ -22,21 +23,21 @@ public:
|
| static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
|
| static TestTypedefs* toNative(v8::Handle<v8::Object> object)
|
| {
|
| - return fromInternalPointer(object->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex));
|
| + return fromInternalPointer(blink::toInternalPointer(object));
|
| }
|
| static TestTypedefs* 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(TestTypedefs* impl)
|
| + static inline ScriptWrappableBase* toInternalPointer(TestTypedefs* impl)
|
| {
|
| - return impl;
|
| + return reinterpret_cast<ScriptWrappableBase*>(static_cast<void*>(impl));
|
| }
|
|
|
| - static inline TestTypedefs* fromInternalPointer(void* object)
|
| + static inline TestTypedefs* fromInternalPointer(ScriptWrappableBase* internalPointer)
|
| {
|
| - return static_cast<TestTypedefs*>(object);
|
| + return reinterpret_cast<TestTypedefs*>(static_cast<void*>(internalPointer));
|
| }
|
| static void installPerContextEnabledProperties(v8::Handle<v8::Object>, TestTypedefs*, v8::Isolate*) { }
|
| static void installPerContextEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
|
|
|