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 #include "remoting/host/chromoting_host.h" | 5 #include "remoting/host/chromoting_host.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/message_loop_proxy.h" | 10 #include "base/message_loop_proxy.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "remoting/base/constants.h" | 12 #include "remoting/base/constants.h" |
13 #include "remoting/base/encoder.h" | |
14 #include "remoting/base/encoder_row_based.h" | |
15 #include "remoting/base/encoder_vp8.h" | |
16 #include "remoting/codec/audio_encoder.h" | 13 #include "remoting/codec/audio_encoder.h" |
17 #include "remoting/codec/audio_encoder_verbatim.h" | 14 #include "remoting/codec/audio_encoder_verbatim.h" |
| 15 #include "remoting/codec/video_encoder.h" |
| 16 #include "remoting/codec/video_encoder_row_based.h" |
| 17 #include "remoting/codec/video_encoder_vp8.h" |
18 #include "remoting/host/audio_scheduler.h" | 18 #include "remoting/host/audio_scheduler.h" |
19 #include "remoting/host/chromoting_host_context.h" | 19 #include "remoting/host/chromoting_host_context.h" |
20 #include "remoting/host/desktop_environment.h" | 20 #include "remoting/host/desktop_environment.h" |
21 #include "remoting/host/event_executor.h" | 21 #include "remoting/host/event_executor.h" |
22 #include "remoting/host/host_config.h" | 22 #include "remoting/host/host_config.h" |
23 #include "remoting/host/screen_recorder.h" | 23 #include "remoting/host/screen_recorder.h" |
24 #include "remoting/protocol/connection_to_client.h" | 24 #include "remoting/protocol/connection_to_client.h" |
25 #include "remoting/protocol/client_stub.h" | 25 #include "remoting/protocol/client_stub.h" |
26 #include "remoting/protocol/host_stub.h" | 26 #include "remoting/protocol/host_stub.h" |
27 #include "remoting/protocol/input_stub.h" | 27 #include "remoting/protocol/input_stub.h" |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 OnShutdown()); | 498 OnShutdown()); |
499 | 499 |
500 for (std::vector<base::Closure>::iterator it = shutdown_tasks_.begin(); | 500 for (std::vector<base::Closure>::iterator it = shutdown_tasks_.begin(); |
501 it != shutdown_tasks_.end(); ++it) { | 501 it != shutdown_tasks_.end(); ++it) { |
502 it->Run(); | 502 it->Run(); |
503 } | 503 } |
504 shutdown_tasks_.clear(); | 504 shutdown_tasks_.clear(); |
505 } | 505 } |
506 | 506 |
507 } // namespace remoting | 507 } // namespace remoting |
OLD | NEW |