Index: remoting/protocol/v2_authenticator.h |
diff --git a/remoting/protocol/v2_authenticator.h b/remoting/protocol/v2_authenticator.h |
index 0675cb23f0e53db0237e552af1e972b895865495..4b655829b432524915e19dbcb81b348d264df82f 100644 |
--- a/remoting/protocol/v2_authenticator.h |
+++ b/remoting/protocol/v2_authenticator.h |
@@ -44,6 +44,7 @@ class V2Authenticator : public Authenticator { |
virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE; |
virtual scoped_ptr<ChannelAuthenticator> |
CreateChannelAuthenticator() const OVERRIDE; |
+ virtual bool has_auth_started() const OVERRIDE; |
Sergey Ulanov
2014/03/24 18:42:36
Please keep the same method order as in the interf
kelvinp
2014/03/24 23:11:39
Done.
|
private: |
FRIEND_TEST_ALL_PREFIXES(V2AuthenticatorTest, InvalidSecret); |
@@ -67,6 +68,7 @@ class V2Authenticator : public Authenticator { |
// Used for both host and client authenticators. |
crypto::P224EncryptedKeyExchange key_exchange_impl_; |
State state_; |
+ bool has_auth_started_; |
RejectionReason rejection_reason_; |
std::queue<std::string> pending_messages_; |
std::string auth_key_; |