Index: Source/bindings/tests/results/V8TestNode.h |
diff --git a/Source/bindings/tests/results/V8TestNode.h b/Source/bindings/tests/results/V8TestNode.h |
index 316243e3c39a0072ab615ccd991fb7ed4fbab5ab..ec5ebeeb5981ef5071812c3a6037473dc4269558 100644 |
--- a/Source/bindings/tests/results/V8TestNode.h |
+++ b/Source/bindings/tests/results/V8TestNode.h |
@@ -22,11 +22,11 @@ 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 TestNode* toNative(v8::Handle<v8::Object> object) |
+ static TestNode* toImpl(v8::Handle<v8::Object> object) |
{ |
- return fromInternalPointer(blink::toInternalPointer(object)); |
+ return toImpl(blink::toScriptWrappableBase(object)); |
} |
- static TestNode* toNativeWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>); |
+ static TestNode* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>); |
static const WrapperTypeInfo wrapperTypeInfo; |
static void refObject(ScriptWrappableBase* internalPointer); |
static void derefObject(ScriptWrappableBase* internalPointer); |
@@ -39,14 +39,14 @@ public: |
#else |
static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0; |
#endif |
- static inline ScriptWrappableBase* toInternalPointer(TestNode* impl) |
+ static inline ScriptWrappableBase* toScriptWrappableBase(TestNode* impl) |
{ |
- return impl->toInternalPointer(); |
+ return impl->toScriptWrappableBase(); |
} |
- static inline TestNode* fromInternalPointer(ScriptWrappableBase* internalPointer) |
+ static inline TestNode* toImpl(ScriptWrappableBase* internalPointer) |
{ |
- return ScriptWrappableBase::fromInternalPointer<TestNode>(internalPointer); |
+ return internalPointer->toImpl<TestNode>(); |
} |
static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { } |
static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { } |