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

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

Issue 12326090: Third Party authentication protocol. (Closed) Base URL: http://git.chromium.org/chromium/src.git@host_key_pair
Patch Set: Split authenticator into base, client, host Created 7 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
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 RejectionReason rejection_reason() const OVERRIDE; 66 virtual RejectionReason rejection_reason() const OVERRIDE;
67 virtual void ProcessMessage(const buzz::XmlElement* message) OVERRIDE; 67 virtual void ProcessMessage(const buzz::XmlElement* message,
68 const base::Closure& resume_callback) OVERRIDE;
68 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE; 69 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE;
69 virtual scoped_ptr<ChannelAuthenticator> 70 virtual scoped_ptr<ChannelAuthenticator>
70 CreateChannelAuthenticator() const OVERRIDE; 71 CreateChannelAuthenticator() const OVERRIDE;
71 72
72 protected: 73 protected:
73 Type type_; 74 Type type_;
74 int round_trips_; 75 int round_trips_;
75 Action action_; 76 Action action_;
76 bool async_; 77 bool async_;
77 78
(...skipping 20 matching lines...) Expand all
98 FakeAuthenticator::Action action_; 99 FakeAuthenticator::Action action_;
99 bool async_; 100 bool async_;
100 101
101 DISALLOW_COPY_AND_ASSIGN(FakeHostAuthenticatorFactory); 102 DISALLOW_COPY_AND_ASSIGN(FakeHostAuthenticatorFactory);
102 }; 103 };
103 104
104 } // namespace protocol 105 } // namespace protocol
105 } // namespace remoting 106 } // namespace remoting
106 107
107 #endif // REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_ 108 #endif // REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698