HomeSort by relevance Sort by last modified time
    Searched refs:current_authenticator_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/remoting/protocol/
negotiating_authenticator_base.cc 44 if (!current_authenticator_) {
47 return current_authenticator_->started();
58 if (current_authenticator_->state() == WAITING_MESSAGE) {
61 // |current_authenticator_| is owned, so Unretained() is safe here.
63 current_authenticator_->ProcessMessage(message, base::Bind(
77 state_ = current_authenticator_->state();
79 rejection_reason_ = current_authenticator_->rejection_reason();
89 if (current_authenticator_->state() == MESSAGE_READY) {
90 result = current_authenticator_->GetNextMessage();
94 state_ = current_authenticator_->state()
    [all...]
negotiating_client_authenticator.cc 91 if (current_authenticator_) {
92 DCHECK(current_authenticator_->state() == MESSAGE_READY);
122 current_authenticator_.reset(new ThirdPartyClientAuthenticator(
143 current_authenticator_.reset(new PairingClientAuthenticator(
154 current_authenticator_ = V2Authenticator::CreateForClient(
negotiating_authenticator_base.h 72 // Calls |current_authenticator_| to process |message|, passing the supplied
94 // Gets the next message from |current_authenticator_|, if any, and fills in
100 scoped_ptr<Authenticator> current_authenticator_; member in class:remoting::protocol::NegotiatingAuthenticatorBase
negotiating_host_authenticator.cc 165 current_authenticator_.reset(new ThirdPartyHostAuthenticator(
171 current_authenticator_.reset(new PairingHostAuthenticator(
182 current_authenticator_ = V2Authenticator::CreateForHost(

Completed in 301 milliseconds