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
3 // found in the LICENSE file.
5 #ifndef REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_
6 #define REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "remoting/host/desktop_environment.h"
18 class DesktopCaptureOptions
;
24 class GnubbyAuthHandler
;
26 // Used to create audio/video capturers and event executor that work with
28 class BasicDesktopEnvironment
: public DesktopEnvironment
{
30 virtual ~BasicDesktopEnvironment();
32 // DesktopEnvironment implementation.
33 virtual scoped_ptr
<AudioCapturer
> CreateAudioCapturer() OVERRIDE
;
34 virtual scoped_ptr
<InputInjector
> CreateInputInjector() OVERRIDE
;
35 virtual scoped_ptr
<ScreenControls
> CreateScreenControls() OVERRIDE
;
36 virtual scoped_ptr
<webrtc::DesktopCapturer
> CreateVideoCapturer() OVERRIDE
;
37 virtual scoped_ptr
<webrtc::MouseCursorMonitor
> CreateMouseCursorMonitor()
39 virtual std::string
GetCapabilities() const OVERRIDE
;
40 virtual void SetCapabilities(const std::string
& capabilities
) OVERRIDE
;
41 virtual scoped_ptr
<GnubbyAuthHandler
> CreateGnubbyAuthHandler(
42 protocol::ClientStub
* client_stub
) OVERRIDE
;
45 friend class BasicDesktopEnvironmentFactory
;
47 BasicDesktopEnvironment(
48 scoped_refptr
<base::SingleThreadTaskRunner
> caller_task_runner
,
49 scoped_refptr
<base::SingleThreadTaskRunner
> input_task_runner
,
50 scoped_refptr
<base::SingleThreadTaskRunner
> ui_task_runner
);
52 scoped_refptr
<base::SingleThreadTaskRunner
> caller_task_runner() const {
53 return caller_task_runner_
;
56 scoped_refptr
<base::SingleThreadTaskRunner
> input_task_runner() const {
57 return input_task_runner_
;
60 scoped_refptr
<base::SingleThreadTaskRunner
> ui_task_runner() const {
61 return ui_task_runner_
;
64 webrtc::DesktopCaptureOptions
* desktop_capture_options() {
65 return desktop_capture_options_
.get();
69 // Task runner on which methods of DesktopEnvironment interface should be
71 scoped_refptr
<base::SingleThreadTaskRunner
> caller_task_runner_
;
73 // Used to run input-related tasks.
74 scoped_refptr
<base::SingleThreadTaskRunner
> input_task_runner_
;
76 // Used to run UI code.
77 scoped_refptr
<base::SingleThreadTaskRunner
> ui_task_runner_
;
79 // Options shared between |DesktopCapturer| and |MouseCursorMonitor|. It
80 // might contain expensive resources, thus justifying the sharing.
81 // Also: it's dynamically allocated to avoid having to bring in
82 // desktop_capture_options.h which brings in X11 headers which causes hard to
84 scoped_ptr
<webrtc::DesktopCaptureOptions
> desktop_capture_options_
;
86 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironment
);
89 // Used to create |BasicDesktopEnvironment| instances.
90 class BasicDesktopEnvironmentFactory
: public DesktopEnvironmentFactory
{
92 BasicDesktopEnvironmentFactory(
93 scoped_refptr
<base::SingleThreadTaskRunner
> caller_task_runner
,
94 scoped_refptr
<base::SingleThreadTaskRunner
> input_task_runner
,
95 scoped_refptr
<base::SingleThreadTaskRunner
> ui_task_runner
);
96 virtual ~BasicDesktopEnvironmentFactory();
98 // DesktopEnvironmentFactory implementation.
99 virtual bool SupportsAudioCapture() const OVERRIDE
;
102 scoped_refptr
<base::SingleThreadTaskRunner
> caller_task_runner() const {
103 return caller_task_runner_
;
106 scoped_refptr
<base::SingleThreadTaskRunner
> input_task_runner() const {
107 return input_task_runner_
;
110 scoped_refptr
<base::SingleThreadTaskRunner
> ui_task_runner() const {
111 return ui_task_runner_
;
115 // Task runner on which methods of DesktopEnvironmentFactory interface should
117 scoped_refptr
<base::SingleThreadTaskRunner
> caller_task_runner_
;
119 // Used to run input-related tasks.
120 scoped_refptr
<base::SingleThreadTaskRunner
> input_task_runner_
;
122 // Used to run UI code.
123 scoped_refptr
<base::SingleThreadTaskRunner
> ui_task_runner_
;
125 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironmentFactory
);
128 } // namespace remoting
130 #endif // REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_