| Index: remoting/host/desktop_session_agent.h
|
| diff --git a/remoting/host/desktop_session_agent.h b/remoting/host/desktop_session_agent.h
|
| index 90a23cb1a8e94ee2b71fa462aac725621d565b2f..0aec84d3478fc06d72d6ceafaac28eec62046d09 100644
|
| --- a/remoting/host/desktop_session_agent.h
|
| +++ b/remoting/host/desktop_session_agent.h
|
| @@ -71,19 +71,19 @@ class DesktopSessionAgent
|
| scoped_refptr<AutoThreadTaskRunner> video_capture_task_runner);
|
|
|
| // IPC::Listener implementation.
|
| - virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| - virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
|
| - virtual void OnChannelError() OVERRIDE;
|
| + virtual bool OnMessageReceived(const IPC::Message& message) override;
|
| + virtual void OnChannelConnected(int32 peer_pid) override;
|
| + virtual void OnChannelError() override;
|
|
|
| // webrtc::DesktopCapturer::Callback implementation.
|
| - virtual webrtc::SharedMemory* CreateSharedMemory(size_t size) OVERRIDE;
|
| - virtual void OnCaptureCompleted(webrtc::DesktopFrame* frame) OVERRIDE;
|
| + virtual webrtc::SharedMemory* CreateSharedMemory(size_t size) override;
|
| + virtual void OnCaptureCompleted(webrtc::DesktopFrame* frame) override;
|
|
|
| // webrtc::MouseCursorMonitor::Callback implementation.
|
| - virtual void OnMouseCursor(webrtc::MouseCursor* cursor) OVERRIDE;
|
| + virtual void OnMouseCursor(webrtc::MouseCursor* cursor) override;
|
| virtual void OnMouseCursorPosition(
|
| webrtc::MouseCursorMonitor::CursorState state,
|
| - const webrtc::DesktopVector& position) OVERRIDE;
|
| + const webrtc::DesktopVector& position) override;
|
|
|
| // Forwards a local clipboard event though the IPC channel to the network
|
| // process.
|
| @@ -107,12 +107,12 @@ class DesktopSessionAgent
|
| virtual ~DesktopSessionAgent();
|
|
|
| // ClientSessionControl interface.
|
| - virtual const std::string& client_jid() const OVERRIDE;
|
| - virtual void DisconnectSession() OVERRIDE;
|
| + 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 webrtc::DesktopVector& position) override;
|
| + virtual void SetDisableInputs(bool disable_inputs) override;
|
| + virtual void ResetVideoPipeline() override;
|
|
|
| // Handles StartSessionAgent request from the client.
|
| void OnStartSessionAgent(const std::string& authenticated_jid,
|
|
|