Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: remoting/host/wts_session_process_launcher_win.h

Issue 10823062: Introducing the DaemonProcess class that will implements core of the daemon process functionality. … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_WTS_SESSION_PROCESS_LAUNCHER_WIN_H_
6 #define REMOTING_HOST_WTS_SESSION_PROCESS_LAUNCHER_WIN_H_ 6 #define REMOTING_HOST_WTS_SESSION_PROCESS_LAUNCHER_WIN_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
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 Shutdownable, 38 : public Shutdownable,
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
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_WTS_SESSION_PROCESS_LAUNCHER_WIN_H_ 129 #endif // REMOTING_HOST_WTS_SESSION_PROCESS_LAUNCHER_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698