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/desktop_session_win.h" | 5 #include "remoting/host/desktop_session_win.h" |
6 | 6 |
7 #include <sddl.h> | 7 #include <sddl.h> |
8 | 8 |
9 #include <limits> | 9 #include <limits> |
10 #include <memory> | 10 #include <memory> |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "base/threading/thread_checker.h" | 23 #include "base/threading/thread_checker.h" |
24 #include "base/timer/timer.h" | 24 #include "base/timer/timer.h" |
25 #include "base/win/registry.h" | 25 #include "base/win/registry.h" |
26 #include "base/win/scoped_bstr.h" | 26 #include "base/win/scoped_bstr.h" |
27 #include "base/win/scoped_comptr.h" | 27 #include "base/win/scoped_comptr.h" |
28 #include "base/win/scoped_handle.h" | 28 #include "base/win/scoped_handle.h" |
29 #include "base/win/windows_version.h" | 29 #include "base/win/windows_version.h" |
30 #include "ipc/ipc_message_macros.h" | 30 #include "ipc/ipc_message_macros.h" |
31 #include "ipc/ipc_platform_file.h" | 31 #include "ipc/ipc_platform_file.h" |
32 #include "remoting/base/auto_thread_task_runner.h" | 32 #include "remoting/base/auto_thread_task_runner.h" |
33 // MIDL-generated declarations and definitions. | |
34 #include "remoting/host/chromoting_lib.h" | |
35 #include "remoting/host/chromoting_messages.h" | 33 #include "remoting/host/chromoting_messages.h" |
36 #include "remoting/host/daemon_process.h" | 34 #include "remoting/host/daemon_process.h" |
37 #include "remoting/host/desktop_session.h" | 35 #include "remoting/host/desktop_session.h" |
38 #include "remoting/host/host_main.h" | 36 #include "remoting/host/host_main.h" |
39 #include "remoting/host/ipc_constants.h" | 37 #include "remoting/host/ipc_constants.h" |
40 #include "remoting/host/sas_injector.h" | 38 #include "remoting/host/sas_injector.h" |
41 #include "remoting/host/screen_resolution.h" | 39 #include "remoting/host/screen_resolution.h" |
| 40 // MIDL-generated declarations and definitions. |
| 41 #include "remoting/host/win/chromoting_lib.h" |
42 #include "remoting/host/win/host_service.h" | 42 #include "remoting/host/win/host_service.h" |
43 #include "remoting/host/win/worker_process_launcher.h" | 43 #include "remoting/host/win/worker_process_launcher.h" |
44 #include "remoting/host/win/wts_session_process_delegate.h" | 44 #include "remoting/host/win/wts_session_process_delegate.h" |
45 #include "remoting/host/win/wts_terminal_monitor.h" | 45 #include "remoting/host/win/wts_terminal_monitor.h" |
46 #include "remoting/host/win/wts_terminal_observer.h" | 46 #include "remoting/host/win/wts_terminal_observer.h" |
47 #include "remoting/host/worker_process_ipc_delegate.h" | 47 #include "remoting/host/worker_process_ipc_delegate.h" |
48 | 48 |
49 using base::win::ScopedHandle; | 49 using base::win::ScopedHandle; |
50 | 50 |
51 namespace remoting { | 51 namespace remoting { |
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 exploded.hour, | 716 exploded.hour, |
717 exploded.minute, | 717 exploded.minute, |
718 exploded.second, | 718 exploded.second, |
719 exploded.millisecond, | 719 exploded.millisecond, |
720 passed.c_str()); | 720 passed.c_str()); |
721 | 721 |
722 last_timestamp_ = now; | 722 last_timestamp_ = now; |
723 } | 723 } |
724 | 724 |
725 } // namespace remoting | 725 } // namespace remoting |
OLD | NEW |