OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/threading/thread.h" | 11 #include "base/threading/thread.h" |
12 #include "remoting/base/encoder.h" | 12 #include "remoting/base/encoder.h" |
| 13 #include "remoting/base/plugin_message_loop_proxy.h" |
13 #include "remoting/host/access_verifier.h" | 14 #include "remoting/host/access_verifier.h" |
14 #include "remoting/host/capturer.h" | 15 #include "remoting/host/capturer.h" |
15 #include "remoting/host/client_session.h" | 16 #include "remoting/host/client_session.h" |
16 #include "remoting/host/desktop_environment.h" | 17 #include "remoting/host/desktop_environment.h" |
17 #include "remoting/host/host_status_observer.h" | 18 #include "remoting/host/host_status_observer.h" |
18 #include "remoting/jingle_glue/jingle_thread.h" | 19 #include "remoting/jingle_glue/jingle_thread.h" |
19 #include "remoting/jingle_glue/signal_strategy.h" | 20 #include "remoting/jingle_glue/signal_strategy.h" |
20 #include "remoting/protocol/session_manager.h" | 21 #include "remoting/protocol/session_manager.h" |
21 #include "remoting/protocol/connection_to_client.h" | 22 #include "remoting/protocol/connection_to_client.h" |
22 | 23 |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 // Stores list of tasks that should be executed when we finish | 230 // Stores list of tasks that should be executed when we finish |
230 // shutdown. Used only while |state_| is set to kStopping. | 231 // shutdown. Used only while |state_| is set to kStopping. |
231 std::vector<Task*> shutdown_tasks_; | 232 std::vector<Task*> shutdown_tasks_; |
232 | 233 |
233 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 234 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
234 }; | 235 }; |
235 | 236 |
236 } // namespace remoting | 237 } // namespace remoting |
237 | 238 |
238 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 239 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
OLD | NEW |