| Index: remoting/host/host_window_proxy.cc
|
| diff --git a/remoting/host/host_window_proxy.cc b/remoting/host/host_window_proxy.cc
|
| index 6e806d204916a0eb695a05d1729d4f7f9a2419e6..bdaf5190c0ead25bb53a13f7f7b94d28f4941a9f 100644
|
| --- a/remoting/host/host_window_proxy.cc
|
| +++ b/remoting/host/host_window_proxy.cc
|
| @@ -30,19 +30,18 @@ class HostWindowProxy::Core
|
|
|
| private:
|
| friend class base::RefCountedThreadSafe<Core>;
|
| - virtual ~Core();
|
| + ~Core() override;
|
|
|
| // Start() and Stop() equivalents called on the |ui_task_runner_| thread.
|
| void StartOnUiThread(const std::string& client_jid);
|
| void StopOnUiThread();
|
|
|
| // ClientSessionControl interface.
|
| - virtual const std::string& client_jid() const override;
|
| - virtual void DisconnectSession() override;
|
| - virtual void OnLocalMouseMoved(
|
| - const webrtc::DesktopVector& position) override;
|
| - virtual void SetDisableInputs(bool disable_inputs) override;
|
| - virtual void ResetVideoPipeline() override;
|
| + const std::string& client_jid() const override;
|
| + void DisconnectSession() override;
|
| + void OnLocalMouseMoved(const webrtc::DesktopVector& position) override;
|
| + void SetDisableInputs(bool disable_inputs) override;
|
| + void ResetVideoPipeline() override;
|
|
|
| // Task runner on which public methods of this class must be called.
|
| scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_;
|
|
|