blob: 6ae54bf54c1c5efa5cb026b12c5564612f42c0b1 (
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
61
62
63
|
// 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_SESSION_DESKTOP_ENVIRONMENT_H_
#define REMOTING_HOST_WIN_SESSION_DESKTOP_ENVIRONMENT_H_
#include "base/basictypes.h"
#include "base/callback.h"
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "remoting/host/me2me_desktop_environment.h"
namespace remoting {
// Used to create audio/video capturers and event executor that are compatible
// with Windows sessions.
class SessionDesktopEnvironment : public Me2MeDesktopEnvironment {
public:
~SessionDesktopEnvironment() override;
// DesktopEnvironment implementation.
scoped_ptr<InputInjector> CreateInputInjector() override;
private:
friend class SessionDesktopEnvironmentFactory;
SessionDesktopEnvironment(
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
const base::Closure& inject_sas,
bool supports_touch_events);
// Used to ask the daemon to inject Secure Attention Sequence.
base::Closure inject_sas_;
DISALLOW_COPY_AND_ASSIGN(SessionDesktopEnvironment);
};
// Used to create |SessionDesktopEnvironment| instances.
class SessionDesktopEnvironmentFactory : public Me2MeDesktopEnvironmentFactory {
public:
SessionDesktopEnvironmentFactory(
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
const base::Closure& inject_sas);
~SessionDesktopEnvironmentFactory() override;
// DesktopEnvironmentFactory implementation.
scoped_ptr<DesktopEnvironment> Create(
base::WeakPtr<ClientSessionControl> client_session_control) override;
private:
// Used to ask the daemon to inject Secure Attention Sequence.
base::Closure inject_sas_;
DISALLOW_COPY_AND_ASSIGN(SessionDesktopEnvironmentFactory);
};
} // namespace remoting
#endif // REMOTING_HOST_WIN_SESSION_DESKTOP_ENVIRONMENT_H_
|