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

Unified Diff: remoting/host/daemon_process.h

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/curtain_mode_win.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 b74090d8352125d9d8a5a343d01e2b5581cf3ab0..4b87312d4938eab34cc35fc9f80ef8d76231bb7e 100644
--- a/remoting/host/daemon_process.h
+++ b/remoting/host/daemon_process.h
@@ -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;
+ virtual void OnConfigUpdated(const std::string& serialized_config) override;
+ virtual void OnConfigWatcherError() override;
// HostStatusMonitor interface.
- virtual void AddStatusObserver(HostStatusObserver* observer) OVERRIDE;
- virtual void RemoveStatusObserver(HostStatusObserver* observer) OVERRIDE;
+ virtual void AddStatusObserver(HostStatusObserver* observer) override;
+ virtual 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;
+ virtual void OnChannelConnected(int32 peer_pid) override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual 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_win.cc ('k') | remoting/host/daemon_process_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698