Home
last modified time | relevance | path

Searched refs:current_authenticator_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/remoting/protocol/
Dnegotiating_authenticator_base.cc44 if (!current_authenticator_) { in started()
47 return current_authenticator_->started(); in started()
58 if (current_authenticator_->state() == WAITING_MESSAGE) { in ProcessMessageInternal()
63 current_authenticator_->ProcessMessage(message, base::Bind( in ProcessMessageInternal()
77 state_ = current_authenticator_->state(); in UpdateState()
79 rejection_reason_ = current_authenticator_->rejection_reason(); in UpdateState()
89 if (current_authenticator_->state() == MESSAGE_READY) { in GetNextMessageInternal()
90 result = current_authenticator_->GetNextMessage(); in GetNextMessageInternal()
94 state_ = current_authenticator_->state(); in GetNextMessageInternal()
109 return current_authenticator_->CreateChannelAuthenticator(); in CreateChannelAuthenticator()
Dnegotiating_client_authenticator.cc91 if (current_authenticator_) { in GetNextMessage()
92 DCHECK(current_authenticator_->state() == MESSAGE_READY); in GetNextMessage()
122 current_authenticator_.reset(new ThirdPartyClientAuthenticator( in CreateAuthenticatorForCurrentMethod()
143 current_authenticator_.reset(new PairingClientAuthenticator( in CreatePreferredAuthenticator()
154 current_authenticator_ = V2Authenticator::CreateForClient( in CreateV2AuthenticatorWithSecret()
Dnegotiating_host_authenticator.cc165 current_authenticator_.reset(new ThirdPartyHostAuthenticator( in CreateAuthenticator()
171 current_authenticator_.reset(new PairingHostAuthenticator( in CreateAuthenticator()
182 current_authenticator_ = V2Authenticator::CreateForHost( in CreateAuthenticator()
Dnegotiating_authenticator_base.h100 scoped_ptr<Authenticator> current_authenticator_; variable