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

Unified Diff: remoting/host/daemon_process_win.cc

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/daemon_process_unittest.cc ('k') | remoting/host/desktop_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/daemon_process_win.cc
diff --git a/remoting/host/daemon_process_win.cc b/remoting/host/daemon_process_win.cc
index e848d9e712d776e902cc68dab3d9014eaa94b85c..c499fba38badc0a69ec17ec7f82b36f6fd5b1ba5 100644
--- a/remoting/host/daemon_process_win.cc
+++ b/remoting/host/daemon_process_win.cc
@@ -70,25 +70,25 @@ class DaemonProcessWin : public DaemonProcess {
virtual ~DaemonProcessWin();
// WorkerProcessIpcDelegate implementation.
- virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
- virtual void OnPermanentError(int exit_code) OVERRIDE;
+ virtual void OnChannelConnected(int32 peer_pid) override;
+ virtual void OnPermanentError(int exit_code) override;
// DaemonProcess overrides.
- virtual void SendToNetwork(IPC::Message* message) OVERRIDE;
+ virtual void SendToNetwork(IPC::Message* message) override;
virtual bool OnDesktopSessionAgentAttached(
int terminal_id,
base::ProcessHandle desktop_process,
- IPC::PlatformFileForTransit desktop_pipe) OVERRIDE;
+ IPC::PlatformFileForTransit desktop_pipe) override;
protected:
// DaemonProcess implementation.
virtual scoped_ptr<DesktopSession> DoCreateDesktopSession(
int terminal_id,
const ScreenResolution& resolution,
- bool virtual_terminal) OVERRIDE;
+ bool virtual_terminal) override;
virtual void DoCrashNetworkProcess(
- const tracked_objects::Location& location) OVERRIDE;
- virtual void LaunchNetworkProcess() OVERRIDE;
+ const tracked_objects::Location& location) override;
+ virtual void LaunchNetworkProcess() override;
// Changes the service start type to 'manual'.
void DisableAutoStart();
« no previous file with comments | « remoting/host/daemon_process_unittest.cc ('k') | remoting/host/desktop_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698