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

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DWrapperTypeInfo.h72 // v8 objects. Each v8 bindings class has exactly one static WrapperTypeInfo member, so
74 struct WrapperTypeInfo { struct in namespace:WebCore
76 static WrapperTypeInfo* unwrap(v8::Handle<v8::Value> typeInfoWrapper)
78 return reinterpret_cast<WrapperTypeInfo*>(v8::External::Cast(*typeInfoWrapper)->Value());
82 bool equals(const WrapperTypeInfo* that) const
87 bool isSubclass(const WrapperTypeInfo* that) const
89 for (const WrapperTypeInfo* current = this; current; current = current->parentClass) {
138 const WrapperTypeInfo* parentClass;
168 inline WrapperTypeInfo* toWrapperTypeInfo(const v8::Persistent<v8::Object>& object)
170 return getInternalField<WrapperTypeInfo, v8DOMWrapperTypeInde
[all...]

Completed in 136 milliseconds