| Index: remoting/host/basic_desktop_environment.h
|
| diff --git a/remoting/host/basic_desktop_environment.h b/remoting/host/basic_desktop_environment.h
|
| index f878e01b592ec6e6d259efbfe827998c8eb487e1..eb1c8b6688bf7b8480c9acec7bc4f991615390a4 100644
|
| --- a/remoting/host/basic_desktop_environment.h
|
| +++ b/remoting/host/basic_desktop_environment.h
|
| @@ -12,6 +12,8 @@
|
|
|
| namespace remoting {
|
|
|
| +class LocalInputMonitor;
|
| +
|
| // Used to create audio/video capturers and event executor that work with
|
| // the local console.
|
| class BasicDesktopEnvironment : public DesktopEnvironment {
|
| @@ -55,6 +57,9 @@ class BasicDesktopEnvironment : public DesktopEnvironment {
|
| // Used to run UI code.
|
| scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
|
|
|
| + // Notifies the client session about the local mouse movements.
|
| + scoped_ptr<LocalInputMonitor> local_input_monitor_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironment);
|
| };
|
|
|
|
|