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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 // Stores list of tasks that should be executed when we finish | 239 // Stores list of tasks that should be executed when we finish |
239 // shutdown. Used only while |state_| is set to kStopping. | 240 // shutdown. Used only while |state_| is set to kStopping. |
240 std::vector<Task*> shutdown_tasks_; | 241 std::vector<Task*> shutdown_tasks_; |
241 | 242 |
242 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 243 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
243 }; | 244 }; |
244 | 245 |
245 } // namespace remoting | 246 } // namespace remoting |
246 | 247 |
247 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 248 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
OLD | NEW |