Index: remoting/protocol/negotiating_authenticator_base.cc |
diff --git a/remoting/protocol/negotiating_authenticator_base.cc b/remoting/protocol/negotiating_authenticator_base.cc |
index 30bd8ba750d54e2fd59fc1f987e6ba6ea6aef896..5a7a6b47bc568b076e244d20e8f372013d008fbc 100644 |
--- a/remoting/protocol/negotiating_authenticator_base.cc |
+++ b/remoting/protocol/negotiating_authenticator_base.cc |
@@ -40,6 +40,13 @@ Authenticator::State NegotiatingAuthenticatorBase::state() const { |
return state_; |
} |
+bool NegotiatingAuthenticatorBase::has_auth_started() const { |
+ if (!current_authenticator_) { |
+ return false; |
+ } |
+ return current_authenticator_->has_auth_started(); |
+} |
+ |
Authenticator::RejectionReason |
NegotiatingAuthenticatorBase::rejection_reason() const { |
return rejection_reason_; |