OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Interface of a client that receives commands from a Chromoting host. | 5 // Interface of a client that receives commands from a Chromoting host. |
6 // | 6 // |
7 // This interface is responsible for a subset of control messages sent to | 7 // This interface is responsible for a subset of control messages sent to |
8 // the Chromoting client. | 8 // the Chromoting client. |
9 | 9 |
10 #ifndef REMOTING_PROTOCOL_CLIENT_STUB_H_ | 10 #ifndef REMOTING_PROTOCOL_CLIENT_STUB_H_ |
11 #define REMOTING_PROTOCOL_CLIENT_STUB_H_ | 11 #define REMOTING_PROTOCOL_CLIENT_STUB_H_ |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 | 14 |
15 class Task; | 15 class Task; |
16 | 16 |
17 namespace remoting { | 17 namespace remoting { |
18 namespace protocol { | 18 namespace protocol { |
19 | 19 |
| 20 class LocalLoginStatus; |
20 class NotifyResolutionRequest; | 21 class NotifyResolutionRequest; |
21 | 22 |
22 class ClientStub { | 23 class ClientStub { |
23 public: | 24 public: |
24 ClientStub() {} | 25 ClientStub() {} |
25 virtual ~ClientStub() {} | 26 virtual ~ClientStub() {} |
26 | 27 |
27 virtual void NotifyResolution(const NotifyResolutionRequest* msg, | 28 virtual void NotifyResolution(const NotifyResolutionRequest* msg, |
28 Task* done) = 0; | 29 Task* done) = 0; |
| 30 virtual void BeginSessionResponse(const LocalLoginStatus* msg, |
| 31 Task* done) = 0; |
29 | 32 |
30 private: | 33 private: |
31 DISALLOW_COPY_AND_ASSIGN(ClientStub); | 34 DISALLOW_COPY_AND_ASSIGN(ClientStub); |
32 }; | 35 }; |
33 | 36 |
34 } // namespace protocol | 37 } // namespace protocol |
35 } // namespace remoting | 38 } // namespace remoting |
36 | 39 |
37 #endif // REMOTING_PROTOCOL_CLIENT_STUB_H_ | 40 #endif // REMOTING_PROTOCOL_CLIENT_STUB_H_ |
OLD | NEW |