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

Unified Diff: remoting/host/win/unprivileged_process_delegate.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/win/session_input_injector.cc ('k') | remoting/host/win/worker_process_launcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/unprivileged_process_delegate.h
diff --git a/remoting/host/win/unprivileged_process_delegate.h b/remoting/host/win/unprivileged_process_delegate.h
index 435958c6c730ae8ff48c0cbe039c7016ddb890b3..74cd8eab22de7242ded587c9eaee547540ab0e76 100644
--- a/remoting/host/win/unprivileged_process_delegate.h
+++ b/remoting/host/win/unprivileged_process_delegate.h
@@ -40,16 +40,16 @@ class UnprivilegedProcessDelegate
virtual ~UnprivilegedProcessDelegate();
// WorkerProcessLauncher::Delegate implementation.
- virtual void LaunchProcess(WorkerProcessLauncher* event_handler) OVERRIDE;
- virtual void Send(IPC::Message* message) OVERRIDE;
- virtual void CloseChannel() OVERRIDE;
- virtual void KillProcess() OVERRIDE;
+ virtual void LaunchProcess(WorkerProcessLauncher* event_handler) override;
+ virtual void Send(IPC::Message* message) override;
+ virtual void CloseChannel() override;
+ virtual void KillProcess() override;
private:
// IPC::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
- virtual void OnChannelError() OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void OnChannelConnected(int32 peer_pid) override;
+ virtual void OnChannelError() override;
void ReportFatalError();
void ReportProcessLaunched(base::win::ScopedHandle worker_process);
« no previous file with comments | « remoting/host/win/session_input_injector.cc ('k') | remoting/host/win/worker_process_launcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698