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

Unified Diff: remoting/host/daemon_process.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/curtain_mode_mac.cc ('k') | remoting/host/daemon_process_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/daemon_process.h
diff --git a/remoting/host/daemon_process.h b/remoting/host/daemon_process.h
index 4b87312d4938eab34cc35fc9f80ef8d76231bb7e..0a7b900257cc1f7feee5ba3803e2bb4ea03fb6d7 100644
--- a/remoting/host/daemon_process.h
+++ b/remoting/host/daemon_process.h
@@ -46,7 +46,7 @@ class DaemonProcess
public:
typedef std::list<DesktopSession*> DesktopSessionList;
- virtual ~DaemonProcess();
+ ~DaemonProcess() override;
// Creates a platform-specific implementation of the daemon process object
// passing relevant task runners. Public methods of this class must be called
@@ -58,17 +58,17 @@ class DaemonProcess
const base::Closure& stopped_callback);
// ConfigWatcher::Delegate
- virtual void OnConfigUpdated(const std::string& serialized_config) override;
- virtual void OnConfigWatcherError() override;
+ void OnConfigUpdated(const std::string& serialized_config) override;
+ void OnConfigWatcherError() override;
// HostStatusMonitor interface.
- virtual void AddStatusObserver(HostStatusObserver* observer) override;
- virtual void RemoveStatusObserver(HostStatusObserver* observer) override;
+ void AddStatusObserver(HostStatusObserver* observer) override;
+ void RemoveStatusObserver(HostStatusObserver* observer) override;
// WorkerProcessIpcDelegate implementation.
- virtual void OnChannelConnected(int32 peer_pid) override;
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void OnPermanentError(int exit_code) override;
+ void OnChannelConnected(int32 peer_pid) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void OnPermanentError(int exit_code) override;
// Sends an IPC message to the network process. The message will be dropped
// unless the network process is connected over the IPC channel.
« no previous file with comments | « remoting/host/curtain_mode_mac.cc ('k') | remoting/host/daemon_process_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698