blob: 03f3bc8f6b150e1af17f1b4b920b1714d6bc3aac (
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
|
// Copyright (c) 2011 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_DESKTOP_ENVIRONMENT_H_
#define REMOTING_HOST_DESKTOP_ENVIRONMENT_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
namespace remoting {
class Capturer;
class Curtain;
class EventExecutor;
class DesktopEnvironment {
public:
// DesktopEnvironment takes ownership of all the objects passed the ctor.
DesktopEnvironment(Capturer* capturer, EventExecutor* event_executor,
Curtain* curtain);
virtual ~DesktopEnvironment();
Capturer* capturer() const { return capturer_.get(); }
EventExecutor* event_executor() const { return event_executor_.get(); }
Curtain* curtain() const { return curtain_.get(); }
private:
// Capturer to be used by ScreenRecorder.
scoped_ptr<Capturer> capturer_;
// Executes input events received from the client.
scoped_ptr<EventExecutor> event_executor_;
// Curtain ensures privacy for the remote user.
scoped_ptr<Curtain> curtain_;
DISALLOW_COPY_AND_ASSIGN(DesktopEnvironment);
};
} // namespace remoting
#endif // REMOTING_HOST_DESKTOP_ENVIRONMENT_H_
|