| Index: remoting/host/ipc_host_event_logger.h
|
| diff --git a/remoting/host/ipc_host_event_logger.h b/remoting/host/ipc_host_event_logger.h
|
| index 069c4fa8d57733d8032e045fde8a8e06fe2d9d6a..f9e61895a70d91111a3d4ca427da4099e8935e65 100644
|
| --- a/remoting/host/ipc_host_event_logger.h
|
| +++ b/remoting/host/ipc_host_event_logger.h
|
| @@ -34,16 +34,16 @@ class IpcHostEventLogger
|
| virtual ~IpcHostEventLogger();
|
|
|
| // HostStatusObserver interface.
|
| - virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
|
| - virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
|
| - virtual void OnClientConnected(const std::string& jid) OVERRIDE;
|
| - virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
|
| + virtual void OnAccessDenied(const std::string& jid) override;
|
| + virtual void OnClientAuthenticated(const std::string& jid) override;
|
| + virtual void OnClientConnected(const std::string& jid) override;
|
| + virtual void OnClientDisconnected(const std::string& jid) override;
|
| virtual void OnClientRouteChange(
|
| const std::string& jid,
|
| const std::string& channel_name,
|
| - const protocol::TransportRoute& route) OVERRIDE;
|
| - virtual void OnStart(const std::string& xmpp_login) OVERRIDE;
|
| - virtual void OnShutdown() OVERRIDE;
|
| + const protocol::TransportRoute& route) override;
|
| + virtual void OnStart(const std::string& xmpp_login) override;
|
| + virtual void OnShutdown() override;
|
|
|
| private:
|
| // Used to report host status events to the daemon.
|
|
|