Searched defs:WrapperTypeInfo (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DWrapperTypeInfo.h51 // v8 objects. Each v8 bindings class has exactly one static WrapperTypeInfo member, so
53 struct WrapperTypeInfo { struct in namespace:WebCore
55 static WrapperTypeInfo* unwrap(v8::Handle<v8::Value> typeInfoWrapper)
57 return reinterpret_cast<WrapperTypeInfo*>(v8::External::Unwrap(typeInfoWrapper));
61 bool equals(const WrapperTypeInfo* that) const
66 bool isSubclass(const WrapperTypeInfo* that) const
68 for (const WrapperTypeInfo* current = this; current; current = current->parentClass) {
94 const WrapperTypeInfo* parentClass;

Completed in 38 milliseconds