blob: 5d55c98413017d063a15a822052731854d109ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_WIN_WTS_SESSION_PROCESS_DELEGATE_H_
#define REMOTING_HOST_WIN_WTS_SESSION_PROCESS_DELEGATE_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "remoting/host/win/worker_process_launcher.h"
namespace base {
class FilePath;
class SingleThreadTaskRunner;
} // namespace base
namespace IPC {
class Listener;
class Message;
} // namespace base
namespace remoting {
// Implements logic for launching and monitoring a worker process in a different
// session.
class WtsSessionProcessDelegate
: public WorkerProcessLauncher::Delegate {
public:
WtsSessionProcessDelegate(
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
const base::FilePath& binary_path,
uint32 session_id,
bool launch_elevated,
const std::string& channel_security);
~WtsSessionProcessDelegate();
// IPC::Sender implementation.
virtual bool Send(IPC::Message* message) OVERRIDE;
// WorkerProcessLauncher::Delegate implementation.
virtual DWORD GetProcessId() const OVERRIDE;
virtual bool IsPermanentError(int failure_count) const OVERRIDE;
virtual void KillProcess(DWORD exit_code) OVERRIDE;
virtual bool LaunchProcess(
IPC::Listener* delegate,
base::win::ScopedHandle* process_exit_event_out) OVERRIDE;
private:
// The actual implementation resides in WtsSessionProcessDelegate::Core class.
class Core;
scoped_refptr<Core> core_;
DISALLOW_COPY_AND_ASSIGN(WtsSessionProcessDelegate);
};
} // namespace remoting
#endif // REMOTING_HOST_WIN_WTS_SESSION_PROCESS_DELEGATE_H_
|