Index: remoting/host/basic_desktop_environment.h |
diff --git a/remoting/host/basic_desktop_environment.h b/remoting/host/basic_desktop_environment.h |
index 21e7be9df0985602253b542e60e35f8d2fe5ee8a..dcd5f8fc3b5757ee0f57c9ddc4332dd5fd21abd2 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); |
}; |