Lines Matching refs:wrapperStruct
47 WrapperStruct* wrapperStruct = GetWrapperStruct(this); in GetStruct() local
49 DCHECK_EQ(kWrapperType, wrapperStruct->type_); in GetStruct()
50 return wrapperStruct->struct_; in GetStruct()
118 WrapperStruct* wrapperStruct = new WrapperStruct;
119 wrapperStruct->type_ = kWrapperType;
120 wrapperStruct->struct_ = s;
123 CefRefPtr<BaseName> wrapperPtr(&wrapperStruct->wrapper_);
126 wrapperStruct->wrapper_.UnderlyingRelease();
137 WrapperStruct* wrapperStruct = GetWrapperStruct(c.get());
141 if (wrapperStruct->type_ != kWrapperType)
142 return UnwrapDerived(wrapperStruct->type_, c.get());
146 wrapperStruct->wrapper_.UnderlyingAddRef();
148 return wrapperStruct->struct_;
155 WrapperStruct* wrapperStruct = GetWrapperStruct(this);
157 DCHECK_EQ(kWrapperType, wrapperStruct->type_);
158 delete wrapperStruct;