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

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DWrapperTypeInfo.h68 // v8 objects. Each v8 bindings class has exactly one static WrapperTypeInfo member, so
70 struct WrapperTypeInfo { struct in namespace:blink
92 static const WrapperTypeInfo* unwrap(v8::Handle<v8::Value> typeInfoWrapper)
94 return reinterpret_cast<const WrapperTypeInfo*>(v8::External::Cast(*typeInfoWrapper)->Value());
98 bool equals(const WrapperTypeInfo* that) const
103 bool isSubclass(const WrapperTypeInfo* that) const
105 for (const WrapperTypeInfo* current = this; current; current = current->parentClass) {
177 // This field must be the first member of the struct WrapperTypeInfo. This is also checked by a COMPILE_ASSERT() below.
189 const WrapperTypeInfo* parentClass;
196 COMPILE_ASSERT(offsetof(struct WrapperTypeInfo, ginEmbedde
[all...]

Completed in 73 milliseconds