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

Unified Diff: remoting/host/host_event_logger_posix.cc

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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.h ('k') | remoting/host/host_status_logger.h » ('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 eb25429cba1fd64e8ebee71827011cccbf2143cb..231d683f49d55d9e9158c5d1395a1a5bb5c515ab 100644
--- a/remoting/host/host_event_logger_posix.cc
+++ b/remoting/host/host_event_logger_posix.cc
@@ -26,19 +26,18 @@ class HostEventLoggerPosix : public HostEventLogger, public HostStatusObserver {
HostEventLoggerPosix(base::WeakPtr<HostStatusMonitor> monitor,
const std::string& application_name);
- virtual ~HostEventLoggerPosix();
+ ~HostEventLoggerPosix() override;
// 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 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;
+ void OnClientAuthenticated(const std::string& jid) override;
+ void OnClientDisconnected(const std::string& jid) override;
+ void OnAccessDenied(const std::string& jid) override;
+ void OnClientRouteChange(const std::string& jid,
+ const std::string& channel_name,
+ const protocol::TransportRoute& route) override;
+ void OnStart(const std::string& xmpp_login) override;
+ void OnShutdown() override;
private:
void Log(const std::string& message);
« no previous file with comments | « remoting/host/host_change_notification_listener.h ('k') | remoting/host/host_status_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698