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 #ifndef REMOTING_HOST_WTS_SESSION_PROCESS_LAUNCHER_WIN_H_ | 5 #ifndef REMOTING_HOST_WIN_WTS_SESSION_PROCESS_LAUNCHER_H_ |
6 #define REMOTING_HOST_WTS_SESSION_PROCESS_LAUNCHER_WIN_H_ | 6 #define REMOTING_HOST_WIN_WTS_SESSION_PROCESS_LAUNCHER_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/process.h" | 15 #include "base/process.h" |
16 #include "base/time.h" | 16 #include "base/time.h" |
17 #include "base/timer.h" | 17 #include "base/timer.h" |
18 #include "base/win/scoped_handle.h" | 18 #include "base/win/scoped_handle.h" |
19 #include "base/win/object_watcher.h" | 19 #include "base/win/object_watcher.h" |
20 #include "ipc/ipc_channel.h" | 20 #include "ipc/ipc_channel.h" |
21 | 21 |
22 #include "remoting/host/wts_console_observer_win.h" | 22 #include "remoting/host/win/wts_console_observer.h" |
23 | 23 |
24 namespace base { | 24 namespace base { |
25 class MessageLoopProxy; | 25 class MessageLoopProxy; |
26 } // namespace base | 26 } // namespace base |
27 | 27 |
28 namespace IPC { | 28 namespace IPC { |
29 class ChannelProxy; | 29 class ChannelProxy; |
30 class Message; | 30 class Message; |
31 } // namespace IPC | 31 } // namespace IPC |
32 | 32 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // process. | 122 // process. |
123 scoped_ptr<IPC::ChannelProxy> chromoting_channel_; | 123 scoped_ptr<IPC::ChannelProxy> chromoting_channel_; |
124 | 124 |
125 scoped_ptr<SasInjector> sas_injector_; | 125 scoped_ptr<SasInjector> sas_injector_; |
126 | 126 |
127 DISALLOW_COPY_AND_ASSIGN(WtsSessionProcessLauncher); | 127 DISALLOW_COPY_AND_ASSIGN(WtsSessionProcessLauncher); |
128 }; | 128 }; |
129 | 129 |
130 } // namespace remoting | 130 } // namespace remoting |
131 | 131 |
132 #endif // REMOTING_HOST_WTS_SESSION_PROCESS_LAUNCHER_WIN_H_ | 132 #endif // REMOTING_HOST_WIN_WTS_SESSION_PROCESS_LAUNCHER_H_ |
OLD | NEW |