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..7435e55a87beeb790b5efe078f8ed59cf13340dd 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::started() const { |
+ if (!v2_authenticator_) { |
+ return false; |
+ } |
+ return v2_authenticator_->started(); |
+} |
+ |
Authenticator::RejectionReason |
PairingAuthenticatorBase::rejection_reason() const { |
if (!v2_authenticator_) { |