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 // This file implements a standalone host process for Me2Me. | 5 // This file implements a standalone host process for Me2Me. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/at_exit.h" | 9 #include "base/at_exit.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 26 matching lines...) Expand all Loading... | |
37 #include "remoting/host/branding.h" | 37 #include "remoting/host/branding.h" |
38 #include "remoting/host/chromoting_host.h" | 38 #include "remoting/host/chromoting_host.h" |
39 #include "remoting/host/chromoting_host_context.h" | 39 #include "remoting/host/chromoting_host_context.h" |
40 #include "remoting/host/chromoting_messages.h" | 40 #include "remoting/host/chromoting_messages.h" |
41 #include "remoting/host/config_file_watcher.h" | 41 #include "remoting/host/config_file_watcher.h" |
42 #include "remoting/host/curtain_mode.h" | 42 #include "remoting/host/curtain_mode.h" |
43 #include "remoting/host/curtaining_host_observer.h" | 43 #include "remoting/host/curtaining_host_observer.h" |
44 #include "remoting/host/desktop_environment.h" | 44 #include "remoting/host/desktop_environment.h" |
45 #include "remoting/host/desktop_session_connector.h" | 45 #include "remoting/host/desktop_session_connector.h" |
46 #include "remoting/host/dns_blackhole_checker.h" | 46 #include "remoting/host/dns_blackhole_checker.h" |
47 #include "remoting/host/event_executor.h" | |
48 #include "remoting/host/heartbeat_sender.h" | 47 #include "remoting/host/heartbeat_sender.h" |
49 #include "remoting/host/host_change_notification_listener.h" | 48 #include "remoting/host/host_change_notification_listener.h" |
50 #include "remoting/host/host_config.h" | 49 #include "remoting/host/host_config.h" |
51 #include "remoting/host/host_event_logger.h" | 50 #include "remoting/host/host_event_logger.h" |
52 #include "remoting/host/host_exit_codes.h" | 51 #include "remoting/host/host_exit_codes.h" |
53 #include "remoting/host/host_main.h" | 52 #include "remoting/host/host_main.h" |
54 #include "remoting/host/host_user_interface.h" | 53 #include "remoting/host/host_user_interface.h" |
54 #include "remoting/host/input_injector.h" | |
alexeypa (please no reviews)
2013/03/22 21:19:38
nit: Is this include really needed here?
| |
55 #include "remoting/host/ipc_constants.h" | 55 #include "remoting/host/ipc_constants.h" |
56 #include "remoting/host/ipc_desktop_environment.h" | 56 #include "remoting/host/ipc_desktop_environment.h" |
57 #include "remoting/host/ipc_host_event_logger.h" | 57 #include "remoting/host/ipc_host_event_logger.h" |
58 #include "remoting/host/json_host_config.h" | 58 #include "remoting/host/json_host_config.h" |
59 #include "remoting/host/log_to_server.h" | 59 #include "remoting/host/log_to_server.h" |
60 #include "remoting/host/logging.h" | 60 #include "remoting/host/logging.h" |
61 #include "remoting/host/me2me_desktop_environment.h" | 61 #include "remoting/host/me2me_desktop_environment.h" |
62 #include "remoting/host/network_settings.h" | 62 #include "remoting/host/network_settings.h" |
63 #include "remoting/host/policy_hack/policy_watcher.h" | 63 #include "remoting/host/policy_hack/policy_watcher.h" |
64 #include "remoting/host/service_urls.h" | 64 #include "remoting/host/service_urls.h" |
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1137 return exit_code; | 1137 return exit_code; |
1138 } | 1138 } |
1139 | 1139 |
1140 } // namespace remoting | 1140 } // namespace remoting |
1141 | 1141 |
1142 #if !defined(OS_WIN) | 1142 #if !defined(OS_WIN) |
1143 int main(int argc, char** argv) { | 1143 int main(int argc, char** argv) { |
1144 return remoting::HostMain(argc, argv); | 1144 return remoting::HostMain(argc, argv); |
1145 } | 1145 } |
1146 #endif // !defined(OS_WIN) | 1146 #endif // !defined(OS_WIN) |
OLD | NEW |