Home
last modified time | relevance | path

Searched refs:underlying_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/remoting/protocol/
Dthird_party_authenticator_base.cc39 return underlying_->state(); in state()
49 return underlying_->rejection_reason(); in rejection_reason()
61 DCHECK(underlying_); in ProcessMessage()
62 DCHECK_EQ(underlying_->state(), WAITING_MESSAGE); in ProcessMessage()
63 underlying_->ProcessMessage(message, resume_callback); in ProcessMessage()
71 if (underlying_ && underlying_->state() == MESSAGE_READY) { in GetNextMessage()
72 message = underlying_->GetNextMessage().Pass(); in GetNextMessage()
87 return underlying_->CreateChannelAuthenticator(); in CreateChannelAuthenticator()
Dthird_party_host_authenticator.cc88 underlying_ = V2Authenticator::CreateForHost( in OnThirdPartyTokenValidated()
90 underlying_->ProcessMessage(message, resume_callback); in OnThirdPartyTokenValidated()
Dthird_party_authenticator_base.h67 scoped_ptr<Authenticator> underlying_; variable
Dthird_party_client_authenticator.cc75 underlying_ = V2Authenticator::CreateForClient( in OnThirdPartyTokenFetched()
/external/chromium_org/remoting/host/
Dpam_authorization_factory_posix.cc44 scoped_ptr<protocol::Authenticator> underlying_; member in remoting::__anon05fa00a10111::PamAuthorizer
50 : underlying_(underlying.Pass()), in PamAuthorizer()
61 return underlying_->state(); in state()
70 return underlying_->rejection_reason(); in rejection_reason()
77 underlying_->ProcessMessage(message, base::Bind( in ProcessMessage()
88 scoped_ptr<buzz::XmlElement> result(underlying_->GetNextMessage()); in GetNextMessage()
95 return underlying_->CreateChannelAuthenticator(); in CreateChannelAuthenticator()
156 : underlying_(underlying.Pass()) { in PamAuthorizationFactory()
168 underlying_->CreateAuthenticator(local_jid, remote_jid, first_message)); in CreateAuthenticator()
Dpam_authorization_factory_posix.h29 scoped_ptr<protocol::AuthenticatorFactory> underlying_;