| Index: Source/bindings/tests/results/V8TestInterfaceConstructor.h
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor.h b/Source/bindings/tests/results/V8TestInterfaceConstructor.h
|
| index f95c60b14b5e2ca177fccf28d1aa0c76bd2b82e5..628216a17aa3234b2fd7b6f6ca16fe081042f477 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceConstructor.h
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceConstructor.h
|
| @@ -27,25 +27,25 @@ public:
|
| static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
|
| static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
|
| static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
|
| - static TestInterfaceConstructor* toNative(v8::Handle<v8::Object> object)
|
| + static TestInterfaceConstructor* toImpl(v8::Handle<v8::Object> object)
|
| {
|
| - return fromInternalPointer(blink::toInternalPointer(object));
|
| + return toImpl(blink::toScriptWrappableBase(object));
|
| }
|
| - static TestInterfaceConstructor* toNativeWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
|
| + static TestInterfaceConstructor* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
|
| static const WrapperTypeInfo wrapperTypeInfo;
|
| static void refObject(ScriptWrappableBase* internalPointer);
|
| static void derefObject(ScriptWrappableBase* internalPointer);
|
| static WrapperPersistentNode* createPersistentHandle(ScriptWrappableBase* internalPointer);
|
| static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
|
| - static inline ScriptWrappableBase* toInternalPointer(TestInterfaceConstructor* impl)
|
| + static inline ScriptWrappableBase* toScriptWrappableBase(TestInterfaceConstructor* impl)
|
| {
|
| - return impl->toInternalPointer();
|
| + return impl->toScriptWrappableBase();
|
| }
|
|
|
| - static inline TestInterfaceConstructor* fromInternalPointer(ScriptWrappableBase* internalPointer)
|
| + static inline TestInterfaceConstructor* toImpl(ScriptWrappableBase* internalPointer)
|
| {
|
| - return ScriptWrappableBase::fromInternalPointer<TestInterfaceConstructor>(internalPointer);
|
| + return internalPointer->toImpl<TestInterfaceConstructor>();
|
| }
|
| static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
|
| static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
|
|
|