OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_PROTOCOL_V2_AUTHENTICATOR_H_ | 5 #ifndef REMOTING_PROTOCOL_V2_AUTHENTICATOR_H_ |
6 #define REMOTING_PROTOCOL_V2_AUTHENTICATOR_H_ | 6 #define REMOTING_PROTOCOL_V2_AUTHENTICATOR_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 static scoped_ptr<Authenticator> CreateForHost( | 31 static scoped_ptr<Authenticator> CreateForHost( |
32 const std::string& local_cert, | 32 const std::string& local_cert, |
33 scoped_refptr<RsaKeyPair> key_pair, | 33 scoped_refptr<RsaKeyPair> key_pair, |
34 const std::string& shared_secret, | 34 const std::string& shared_secret, |
35 State initial_state); | 35 State initial_state); |
36 | 36 |
37 virtual ~V2Authenticator(); | 37 virtual ~V2Authenticator(); |
38 | 38 |
39 // Authenticator interface. | 39 // Authenticator interface. |
40 virtual State state() const OVERRIDE; | 40 virtual State state() const override; |
41 virtual bool started() const OVERRIDE; | 41 virtual bool started() const override; |
42 virtual RejectionReason rejection_reason() const OVERRIDE; | 42 virtual RejectionReason rejection_reason() const override; |
43 virtual void ProcessMessage(const buzz::XmlElement* message, | 43 virtual void ProcessMessage(const buzz::XmlElement* message, |
44 const base::Closure& resume_callback) OVERRIDE; | 44 const base::Closure& resume_callback) override; |
45 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE; | 45 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() override; |
46 virtual scoped_ptr<ChannelAuthenticator> | 46 virtual scoped_ptr<ChannelAuthenticator> |
47 CreateChannelAuthenticator() const OVERRIDE; | 47 CreateChannelAuthenticator() const override; |
48 | 48 |
49 private: | 49 private: |
50 FRIEND_TEST_ALL_PREFIXES(V2AuthenticatorTest, InvalidSecret); | 50 FRIEND_TEST_ALL_PREFIXES(V2AuthenticatorTest, InvalidSecret); |
51 | 51 |
52 V2Authenticator(crypto::P224EncryptedKeyExchange::PeerType type, | 52 V2Authenticator(crypto::P224EncryptedKeyExchange::PeerType type, |
53 const std::string& shared_secret, | 53 const std::string& shared_secret, |
54 State initial_state); | 54 State initial_state); |
55 | 55 |
56 virtual void ProcessMessageInternal(const buzz::XmlElement* message); | 56 virtual void ProcessMessageInternal(const buzz::XmlElement* message); |
57 | 57 |
(...skipping 15 matching lines...) Expand all Loading... |
73 std::queue<std::string> pending_messages_; | 73 std::queue<std::string> pending_messages_; |
74 std::string auth_key_; | 74 std::string auth_key_; |
75 | 75 |
76 DISALLOW_COPY_AND_ASSIGN(V2Authenticator); | 76 DISALLOW_COPY_AND_ASSIGN(V2Authenticator); |
77 }; | 77 }; |
78 | 78 |
79 } // namespace protocol | 79 } // namespace protocol |
80 } // namespace remoting | 80 } // namespace remoting |
81 | 81 |
82 #endif // REMOTING_PROTOCOL_V2_AUTHENTICATOR_H_ | 82 #endif // REMOTING_PROTOCOL_V2_AUTHENTICATOR_H_ |
OLD | NEW |