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

Unified Diff: remoting/host/host_event_logger_posix.cc

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/host_change_notification_listener_unittest.cc ('k') | remoting/host/host_event_logger_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_event_logger_posix.cc
diff --git a/remoting/host/host_event_logger_posix.cc b/remoting/host/host_event_logger_posix.cc
index c462b64902b13c20782e48ec21459424cc947d4e..eb25429cba1fd64e8ebee71827011cccbf2143cb 100644
--- a/remoting/host/host_event_logger_posix.cc
+++ b/remoting/host/host_event_logger_posix.cc
@@ -30,15 +30,15 @@ class HostEventLoggerPosix : public HostEventLogger, public HostStatusObserver {
// HostStatusObserver implementation. These methods will be called from the
// network thread.
- virtual void OnClientAuthenticated(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 OnClientDisconnected(const std::string& jid) override;
+ virtual void OnAccessDenied(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:
void Log(const std::string& message);
« no previous file with comments | « remoting/host/host_change_notification_listener_unittest.cc ('k') | remoting/host/host_event_logger_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698