Lines Matching refs:StrongBinding
52 class StrongBinding {
54 explicit StrongBinding(Interface* impl) : binding_(impl) {} in StrongBinding() function
56 StrongBinding(Interface* impl, ScopedMessagePipeHandle handle) in StrongBinding() function
57 : StrongBinding(impl) { in StrongBinding()
61 StrongBinding(Interface* impl, InterfacePtr<Interface>* ptr) in StrongBinding() function
62 : StrongBinding(impl) { in StrongBinding()
66 StrongBinding(Interface* impl, InterfaceRequest<Interface> request) in StrongBinding() function
67 : StrongBinding(impl) { in StrongBinding()
71 ~StrongBinding() {} in ~StrongBinding()
77 base::Bind(&StrongBinding::OnConnectionError, base::Unretained(this))); in Bind()
84 base::Bind(&StrongBinding::OnConnectionError, base::Unretained(this))); in Bind()
91 base::Bind(&StrongBinding::OnConnectionError, base::Unretained(this))); in Bind()
121 DISALLOW_COPY_AND_ASSIGN(StrongBinding);