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

Unified Diff: remoting/host/ipc_host_event_logger.h

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/ipc_desktop_environment.h ('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 f9e61895a70d91111a3d4ca427da4099e8935e65..07ab668c93547f1ddac501a7b42db8f1f1f6b2aa 100644
--- a/remoting/host/ipc_host_event_logger.h
+++ b/remoting/host/ipc_host_event_logger.h
@@ -31,19 +31,18 @@ class IpcHostEventLogger
// Initializes the logger. |daemon_channel| must outlive this object.
IpcHostEventLogger(base::WeakPtr<HostStatusMonitor> monitor,
IPC::Sender* daemon_channel);
- virtual ~IpcHostEventLogger();
+ ~IpcHostEventLogger() override;
// 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 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 OnAccessDenied(const std::string& jid) override;
+ void OnClientAuthenticated(const std::string& jid) override;
+ void OnClientConnected(const std::string& jid) override;
+ void OnClientDisconnected(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:
// Used to report host status events to the daemon.
« no previous file with comments | « remoting/host/ipc_desktop_environment.h ('k') | remoting/host/ipc_input_injector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698