Home | History | Annotate | Download | only in base

Lines Matching refs:BindStateBase

22 // BindStateBase is used to provide an opaque handle that the Callback
33 class BindStateBase {
35 explicit BindStateBase(void (*destructor)(BindStateBase*))
37 ~BindStateBase() = default;
40 friend class scoped_refptr<BindStateBase>;
50 void (*destructor_)(BindStateBase*);
52 DISALLOW_COPY_AND_ASSIGN(BindStateBase);
86 explicit CallbackBase(BindStateBase* bind_state);
93 scoped_refptr<BindStateBase> bind_state_;
107 explicit CallbackBase(BindStateBase* bind_state)