Index: remoting/protocol/pairing_authenticator_base.cc |
diff --git a/remoting/protocol/pairing_authenticator_base.cc b/remoting/protocol/pairing_authenticator_base.cc |
index 47ca27527b03948fc6b9c7bd5471aa264b1c0153..dfd0e1b7b8ed9fdd67bc9285a2042e76eab4f650 100644 |
--- a/remoting/protocol/pairing_authenticator_base.cc |
+++ b/remoting/protocol/pairing_authenticator_base.cc |
@@ -38,6 +38,13 @@ Authenticator::State PairingAuthenticatorBase::state() const { |
return v2_authenticator_->state(); |
} |
+bool PairingAuthenticatorBase::has_auth_started() const { |
+ if (!v2_authenticator_) { |
+ return false; |
+ } |
+ return v2_authenticator_->has_auth_started(); |
+} |
+ |
Authenticator::RejectionReason |
PairingAuthenticatorBase::rejection_reason() const { |
if (!v2_authenticator_) { |