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_WIN_WTS_SESSION_PROCESS_LAUNCHER_H_ | 5 #ifndef REMOTING_HOST_WIN_WTS_SESSION_PROCESS_LAUNCHER_H_ |
6 #define REMOTING_HOST_WIN_WTS_SESSION_PROCESS_LAUNCHER_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" |
(...skipping 13 matching lines...) Expand all Loading... |
24 class SingleThreadTaskRunner; | 24 class SingleThreadTaskRunner; |
25 } // namespace base | 25 } // namespace base |
26 | 26 |
27 namespace IPC { | 27 namespace IPC { |
28 class ChannelProxy; | 28 class ChannelProxy; |
29 class Message; | 29 class Message; |
30 } // namespace IPC | 30 } // namespace IPC |
31 | 31 |
32 namespace remoting { | 32 namespace remoting { |
33 | 33 |
34 // Session id that does not represent any session. | |
35 extern const uint32 kInvalidSessionId; | |
36 | |
37 class SasInjector; | 34 class SasInjector; |
38 class WtsConsoleMonitor; | 35 class WtsConsoleMonitor; |
39 | 36 |
40 class WtsSessionProcessLauncher | 37 class WtsSessionProcessLauncher |
41 : public Stoppable, | 38 : public Stoppable, |
42 public base::win::ObjectWatcher::Delegate, | 39 public base::win::ObjectWatcher::Delegate, |
43 public IPC::Listener, | 40 public IPC::Listener, |
44 public WtsConsoleObserver { | 41 public WtsConsoleObserver { |
45 public: | 42 public: |
46 // Constructs a WtsSessionProcessLauncher object. All interaction with | 43 // Constructs a WtsSessionProcessLauncher object. All interaction with |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 scoped_ptr<IPC::ChannelProxy> chromoting_channel_; | 120 scoped_ptr<IPC::ChannelProxy> chromoting_channel_; |
124 | 121 |
125 scoped_ptr<SasInjector> sas_injector_; | 122 scoped_ptr<SasInjector> sas_injector_; |
126 | 123 |
127 DISALLOW_COPY_AND_ASSIGN(WtsSessionProcessLauncher); | 124 DISALLOW_COPY_AND_ASSIGN(WtsSessionProcessLauncher); |
128 }; | 125 }; |
129 | 126 |
130 } // namespace remoting | 127 } // namespace remoting |
131 | 128 |
132 #endif // REMOTING_HOST_WIN_WTS_SESSION_PROCESS_LAUNCHER_H_ | 129 #endif // REMOTING_HOST_WIN_WTS_SESSION_PROCESS_LAUNCHER_H_ |
OLD | NEW |