Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: remoting/protocol/fake_authenticator.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/protocol/content_description.h ('k') | remoting/protocol/fake_datagram_socket.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_FAKE_AUTHENTICATOR_H_ 5 #ifndef REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_
6 #define REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_ 6 #define REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "remoting/protocol/authenticator.h" 10 #include "remoting/protocol/authenticator.h"
11 #include "remoting/protocol/channel_authenticator.h" 11 #include "remoting/protocol/channel_authenticator.h"
12 12
13 namespace remoting { 13 namespace remoting {
14 namespace protocol { 14 namespace protocol {
15 15
16 class FakeChannelAuthenticator : public ChannelAuthenticator { 16 class FakeChannelAuthenticator : public ChannelAuthenticator {
17 public: 17 public:
18 FakeChannelAuthenticator(bool accept, bool async); 18 FakeChannelAuthenticator(bool accept, bool async);
19 virtual ~FakeChannelAuthenticator(); 19 virtual ~FakeChannelAuthenticator();
20 20
21 // ChannelAuthenticator interface. 21 // ChannelAuthenticator interface.
22 virtual void SecureAndAuthenticate( 22 virtual void SecureAndAuthenticate(
23 scoped_ptr<net::StreamSocket> socket, 23 scoped_ptr<net::StreamSocket> socket,
24 const DoneCallback& done_callback) OVERRIDE; 24 const DoneCallback& done_callback) override;
25 25
26 private: 26 private:
27 void OnAuthBytesWritten(int result); 27 void OnAuthBytesWritten(int result);
28 void OnAuthBytesRead(int result); 28 void OnAuthBytesRead(int result);
29 29
30 void CallDoneCallback(); 30 void CallDoneCallback();
31 31
32 int result_; 32 int result_;
33 bool async_; 33 bool async_;
34 34
(...skipping 23 matching lines...) Expand all
58 58
59 FakeAuthenticator(Type type, int round_trips, Action action, bool async); 59 FakeAuthenticator(Type type, int round_trips, Action action, bool async);
60 60
61 virtual ~FakeAuthenticator(); 61 virtual ~FakeAuthenticator();
62 62
63 // Set the number of messages that the authenticator needs to process before 63 // Set the number of messages that the authenticator needs to process before
64 // started() returns true. Default to 0. 64 // started() returns true. Default to 0.
65 void set_messages_till_started(int messages); 65 void set_messages_till_started(int messages);
66 66
67 // Authenticator interface. 67 // Authenticator interface.
68 virtual State state() const OVERRIDE; 68 virtual State state() const override;
69 virtual bool started() const OVERRIDE; 69 virtual bool started() const override;
70 virtual RejectionReason rejection_reason() const OVERRIDE; 70 virtual RejectionReason rejection_reason() const override;
71 virtual void ProcessMessage(const buzz::XmlElement* message, 71 virtual void ProcessMessage(const buzz::XmlElement* message,
72 const base::Closure& resume_callback) OVERRIDE; 72 const base::Closure& resume_callback) override;
73 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE; 73 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() override;
74 virtual scoped_ptr<ChannelAuthenticator> 74 virtual scoped_ptr<ChannelAuthenticator>
75 CreateChannelAuthenticator() const OVERRIDE; 75 CreateChannelAuthenticator() const override;
76 76
77 protected: 77 protected:
78 Type type_; 78 Type type_;
79 int round_trips_; 79 int round_trips_;
80 Action action_; 80 Action action_;
81 bool async_; 81 bool async_;
82 82
83 // Total number of messages that have been processed. 83 // Total number of messages that have been processed.
84 int messages_; 84 int messages_;
85 // Number of messages that the authenticator needs to process before started() 85 // Number of messages that the authenticator needs to process before started()
86 // returns true. Default to 0. 86 // returns true. Default to 0.
87 int messages_till_started_; 87 int messages_till_started_;
88 88
89 DISALLOW_COPY_AND_ASSIGN(FakeAuthenticator); 89 DISALLOW_COPY_AND_ASSIGN(FakeAuthenticator);
90 }; 90 };
91 91
92 class FakeHostAuthenticatorFactory : public AuthenticatorFactory { 92 class FakeHostAuthenticatorFactory : public AuthenticatorFactory {
93 public: 93 public:
94 FakeHostAuthenticatorFactory( 94 FakeHostAuthenticatorFactory(
95 int round_trips, int messages_till_start, 95 int round_trips, int messages_till_start,
96 FakeAuthenticator::Action action, bool async); 96 FakeAuthenticator::Action action, bool async);
97 virtual ~FakeHostAuthenticatorFactory(); 97 virtual ~FakeHostAuthenticatorFactory();
98 98
99 // AuthenticatorFactory interface. 99 // AuthenticatorFactory interface.
100 virtual scoped_ptr<Authenticator> CreateAuthenticator( 100 virtual scoped_ptr<Authenticator> CreateAuthenticator(
101 const std::string& local_jid, 101 const std::string& local_jid,
102 const std::string& remote_jid, 102 const std::string& remote_jid,
103 const buzz::XmlElement* first_message) OVERRIDE; 103 const buzz::XmlElement* first_message) override;
104 104
105 private: 105 private:
106 int round_trips_; 106 int round_trips_;
107 int messages_till_started_; 107 int messages_till_started_;
108 FakeAuthenticator::Action action_; 108 FakeAuthenticator::Action action_;
109 bool async_; 109 bool async_;
110 110
111 DISALLOW_COPY_AND_ASSIGN(FakeHostAuthenticatorFactory); 111 DISALLOW_COPY_AND_ASSIGN(FakeHostAuthenticatorFactory);
112 }; 112 };
113 113
114 } // namespace protocol 114 } // namespace protocol
115 } // namespace remoting 115 } // namespace remoting
116 116
117 #endif // REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_ 117 #endif // REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_
OLDNEW
« no previous file with comments | « remoting/protocol/content_description.h ('k') | remoting/protocol/fake_datagram_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698