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_CHROMOTING_HOST_H_ | 5 #ifndef REMOTING_CHROMOTING_HOST_H_ |
6 #define REMOTING_CHROMOTING_HOST_H_ | 6 #define REMOTING_CHROMOTING_HOST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/thread.h" | 10 #include "base/threading/thread.h" |
11 #include "remoting/base/encoder.h" | 11 #include "remoting/base/encoder.h" |
12 #include "remoting/host/access_verifier.h" | 12 #include "remoting/host/access_verifier.h" |
13 #include "remoting/host/capturer.h" | 13 #include "remoting/host/capturer.h" |
14 #include "remoting/host/heartbeat_sender.h" | 14 #include "remoting/host/heartbeat_sender.h" |
15 #include "remoting/jingle_glue/jingle_client.h" | 15 #include "remoting/jingle_glue/jingle_client.h" |
16 #include "remoting/jingle_glue/jingle_thread.h" | 16 #include "remoting/jingle_glue/jingle_thread.h" |
17 #include "remoting/protocol/session_manager.h" | 17 #include "remoting/protocol/session_manager.h" |
18 #include "remoting/protocol/connection_to_client.h" | 18 #include "remoting/protocol/connection_to_client.h" |
19 | 19 |
20 class Task; | 20 class Task; |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 178 |
179 // Configuration of the protocol. | 179 // Configuration of the protocol. |
180 scoped_ptr<protocol::CandidateSessionConfig> protocol_config_; | 180 scoped_ptr<protocol::CandidateSessionConfig> protocol_config_; |
181 | 181 |
182 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 182 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
183 }; | 183 }; |
184 | 184 |
185 } // namespace remoting | 185 } // namespace remoting |
186 | 186 |
187 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 187 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
OLD | NEW |