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_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 <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
15 #include "remoting/protocol/audio_writer.h" | 15 #include "remoting/protocol/audio_writer.h" |
16 #include "remoting/protocol/session.h" | 16 #include "remoting/protocol/session.h" |
17 #include "remoting/protocol/video_writer.h" | 17 #include "remoting/protocol/video_writer.h" |
18 | 18 |
19 namespace net { | |
20 class IPEndPoint; | |
21 } // namespace net | |
22 | |
23 namespace remoting { | 19 namespace remoting { |
24 namespace protocol { | 20 namespace protocol { |
25 | 21 |
26 class ClientStub; | 22 class ClientStub; |
27 class ClipboardStub; | 23 class ClipboardStub; |
28 class HostStub; | 24 class HostStub; |
29 class InputStub; | 25 class InputStub; |
30 class HostControlDispatcher; | 26 class HostControlDispatcher; |
31 class HostEventDispatcher; | 27 class HostEventDispatcher; |
32 | 28 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 scoped_ptr<VideoWriter> video_writer_; | 131 scoped_ptr<VideoWriter> video_writer_; |
136 scoped_ptr<AudioWriter> audio_writer_; | 132 scoped_ptr<AudioWriter> audio_writer_; |
137 | 133 |
138 DISALLOW_COPY_AND_ASSIGN(ConnectionToClient); | 134 DISALLOW_COPY_AND_ASSIGN(ConnectionToClient); |
139 }; | 135 }; |
140 | 136 |
141 } // namespace protocol | 137 } // namespace protocol |
142 } // namespace remoting | 138 } // namespace remoting |
143 | 139 |
144 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ | 140 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ |
OLD | NEW |