| Index: Source/bindings/tests/results/V8TestInterfaceNamedConstructor.h
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.h b/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.h
|
| index f057b71ba00f1a47f2741443df12bb3075bd2f1c..a96d92ee95fa650b701e1521c018d4879632e3bc 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.h
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.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 TestInterfaceNamedConstructor* toNative(v8::Handle<v8::Object> object)
|
| + static TestInterfaceNamedConstructor* toImpl(v8::Handle<v8::Object> object)
|
| {
|
| - return fromInternalPointer(blink::toInternalPointer(object));
|
| + return toImpl(blink::toScriptWrappableBase(object));
|
| }
|
| - static TestInterfaceNamedConstructor* toNativeWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
|
| + static TestInterfaceNamedConstructor* 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 ActiveDOMObject* toActiveDOMObject(v8::Handle<v8::Object>);
|
| static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
|
| - static inline ScriptWrappableBase* toInternalPointer(TestInterfaceNamedConstructor* impl)
|
| + static inline ScriptWrappableBase* toScriptWrappableBase(TestInterfaceNamedConstructor* impl)
|
| {
|
| - return impl->toInternalPointer();
|
| + return impl->toScriptWrappableBase();
|
| }
|
|
|
| - static inline TestInterfaceNamedConstructor* fromInternalPointer(ScriptWrappableBase* internalPointer)
|
| + static inline TestInterfaceNamedConstructor* toImpl(ScriptWrappableBase* internalPointer)
|
| {
|
| - return ScriptWrappableBase::fromInternalPointer<TestInterfaceNamedConstructor>(internalPointer);
|
| + return internalPointer->toImpl<TestInterfaceNamedConstructor>();
|
| }
|
| static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
|
| static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
|
|
|