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

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

Issue 205583011: [Draft] Fix canceling pin prompt causes host overload (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address feedbacks from sergey Created 6 years, 9 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 | Annotate | Revision Log
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"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 ACCEPT, 56 ACCEPT,
57 REJECT, 57 REJECT,
58 REJECT_CHANNEL 58 REJECT_CHANNEL
59 }; 59 };
60 60
61 FakeAuthenticator(Type type, int round_trips, Action action, bool async); 61 FakeAuthenticator(Type type, int round_trips, Action action, bool async);
62 virtual ~FakeAuthenticator(); 62 virtual ~FakeAuthenticator();
63 63
64 // Authenticator interface. 64 // Authenticator interface.
65 virtual State state() const OVERRIDE; 65 virtual State state() const OVERRIDE;
66 virtual bool started() const OVERRIDE;
66 virtual RejectionReason rejection_reason() const OVERRIDE; 67 virtual RejectionReason rejection_reason() const OVERRIDE;
67 virtual void ProcessMessage(const buzz::XmlElement* message, 68 virtual void ProcessMessage(const buzz::XmlElement* message,
68 const base::Closure& resume_callback) OVERRIDE; 69 const base::Closure& resume_callback) OVERRIDE;
69 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE; 70 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE;
70 virtual scoped_ptr<ChannelAuthenticator> 71 virtual scoped_ptr<ChannelAuthenticator>
71 CreateChannelAuthenticator() const OVERRIDE; 72 CreateChannelAuthenticator() const OVERRIDE;
72 73
73 protected: 74 protected:
74 Type type_; 75 Type type_;
75 int round_trips_; 76 int round_trips_;
(...skipping 23 matching lines...) Expand all
99 FakeAuthenticator::Action action_; 100 FakeAuthenticator::Action action_;
100 bool async_; 101 bool async_;
101 102
102 DISALLOW_COPY_AND_ASSIGN(FakeHostAuthenticatorFactory); 103 DISALLOW_COPY_AND_ASSIGN(FakeHostAuthenticatorFactory);
103 }; 104 };
104 105
105 } // namespace protocol 106 } // namespace protocol
106 } // namespace remoting 107 } // namespace remoting
107 108
108 #endif // REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_ 109 #endif // REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698