Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Unified Diff: remoting/host/ipc_host_event_logger.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/ipc_desktop_environment_unittest.cc ('k') | remoting/host/ipc_input_injector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « remoting/host/ipc_desktop_environment_unittest.cc ('k') | remoting/host/ipc_input_injector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698