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

Unified Diff: remoting/host/remoting_me2me_host.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/remote_input_filter.h ('k') | remoting/host/resizing_host_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/remoting_me2me_host.cc
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc
index 6aa6b1e27eefdfead7a33b6ab89920cf4f6ba5cc..444d5aba3219f776eb867d9192663162ccd34c48 100644
--- a/remoting/host/remoting_me2me_host.cc
+++ b/remoting/host/remoting_me2me_host.cc
@@ -152,19 +152,19 @@ class HostProcess
int* exit_code_out);
// ConfigWatcher::Delegate interface.
- virtual void OnConfigUpdated(const std::string& serialized_config) override;
- virtual void OnConfigWatcherError() override;
+ void OnConfigUpdated(const std::string& serialized_config) override;
+ void OnConfigWatcherError() override;
// IPC::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void OnChannelError() override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void OnChannelError() override;
// HeartbeatSender::Listener overrides.
- virtual void OnHeartbeatSuccessful() override;
- virtual void OnUnknownHostIdError() override;
+ void OnHeartbeatSuccessful() override;
+ void OnUnknownHostIdError() override;
// HostChangeNotificationListener::Listener overrides.
- virtual void OnHostDeleted() override;
+ void OnHostDeleted() override;
// Initializes the pairing registry on Windows.
void OnInitializePairingRegistry(
@@ -204,7 +204,7 @@ class HostProcess
};
friend class base::RefCountedThreadSafe<HostProcess>;
- virtual ~HostProcess();
+ ~HostProcess() override;
void StartOnNetworkThread();
« no previous file with comments | « remoting/host/remote_input_filter.h ('k') | remoting/host/resizing_host_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698