| 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_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 Loading... |
| 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 base::Closure& resume_callback, |
| 68 const buzz::XmlElement* message) 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 Loading... |
| 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_ |
| OLD | NEW |