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 #ifndef REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ | 5 #ifndef REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ |
6 #define REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ | 6 #define REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "remoting/protocol/session.h" | 14 #include "remoting/protocol/session.h" |
15 #include "remoting/protocol/stream_writer.h" | |
16 #include "remoting/protocol/video_writer.h" | 15 #include "remoting/protocol/video_writer.h" |
17 | 16 |
18 namespace remoting { | 17 namespace remoting { |
19 namespace protocol { | 18 namespace protocol { |
20 | 19 |
21 class ClientStub; | 20 class ClientStub; |
22 class HostStub; | 21 class HostStub; |
23 class InputStub; | 22 class InputStub; |
24 class HostMessageDispatcher; | 23 class HostMessageDispatcher; |
25 | 24 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 // Dispatcher for submitting messages to stubs. | 108 // Dispatcher for submitting messages to stubs. |
110 scoped_ptr<HostMessageDispatcher> dispatcher_; | 109 scoped_ptr<HostMessageDispatcher> dispatcher_; |
111 | 110 |
112 DISALLOW_COPY_AND_ASSIGN(ConnectionToClient); | 111 DISALLOW_COPY_AND_ASSIGN(ConnectionToClient); |
113 }; | 112 }; |
114 | 113 |
115 } // namespace protocol | 114 } // namespace protocol |
116 } // namespace remoting | 115 } // namespace remoting |
117 | 116 |
118 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ | 117 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ |
OLD | NEW |