| Index: remoting/host/host_user_interface.h
|
| diff --git a/remoting/host/host_user_interface.h b/remoting/host/host_user_interface.h
|
| index d22cb6155937e2f38958d892ddff1640a008e654..88adc458abbd5412bffb7bdd9cb64590e7e8e71a 100644
|
| --- a/remoting/host/host_user_interface.h
|
| +++ b/remoting/host/host_user_interface.h
|
| @@ -24,7 +24,6 @@ namespace remoting {
|
|
|
| class ChromotingHost;
|
| class DisconnectWindow;
|
| -class LocalInputMonitor;
|
|
|
| class HostUserInterface : public HostStatusObserver {
|
| public:
|
| @@ -77,17 +76,11 @@ class HostUserInterface : public HostStatusObserver {
|
| // Provide a user interface allowing the host user to close the connection.
|
| scoped_ptr<DisconnectWindow> disconnect_window_;
|
|
|
| - // Monitor local inputs to allow remote inputs to be blocked while the local
|
| - // user is trying to do something.
|
| - scoped_ptr<LocalInputMonitor> local_input_monitor_;
|
| -
|
| private:
|
| // Invoked from the UI thread when the user clicks on the Disconnect button
|
| // to disconnect the session.
|
| void OnDisconnectCallback();
|
|
|
| - void MonitorLocalInputs(bool enable);
|
| -
|
| // The JID of the currently-authenticated user (or an empty string if no user
|
| // is connected).
|
| std::string authenticated_jid_;
|
| @@ -99,8 +92,6 @@ class HostUserInterface : public HostStatusObserver {
|
| // Thread on which to run the user interface.
|
| scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
|
|
|
| - bool is_monitoring_local_inputs_;
|
| -
|
| // TODO(alexeypa): move |ui_strings_| to DesktopEnvironmentFactory.
|
| UiStrings ui_strings_;
|
|
|
|
|