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

Unified Diff: remoting/host/daemon_process_win.cc

Issue 1101033002: Update {virtual,override} to follow C++11 style in remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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_unittest.cc » ('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 32bf73a0a4a9d6377eb7f0ecf8c7c9bb43d63d55..08ffff66818732bf9df84c1f8e06357dbfd9ade0 100644
--- a/remoting/host/daemon_process_win.cc
+++ b/remoting/host/daemon_process_win.cc
@@ -68,28 +68,28 @@ class DaemonProcessWin : public DaemonProcess {
scoped_refptr<AutoThreadTaskRunner> caller_task_runner,
scoped_refptr<AutoThreadTaskRunner> io_task_runner,
const base::Closure& stopped_callback);
- virtual ~DaemonProcessWin();
+ ~DaemonProcessWin() override;
// WorkerProcessIpcDelegate implementation.
- virtual void OnChannelConnected(int32 peer_pid) override;
- virtual void OnPermanentError(int exit_code) override;
+ void OnChannelConnected(int32 peer_pid) override;
+ void OnPermanentError(int exit_code) override;
// DaemonProcess overrides.
- virtual void SendToNetwork(IPC::Message* message) override;
- virtual bool OnDesktopSessionAgentAttached(
+ void SendToNetwork(IPC::Message* message) override;
+ bool OnDesktopSessionAgentAttached(
int terminal_id,
base::ProcessHandle desktop_process,
IPC::PlatformFileForTransit desktop_pipe) override;
protected:
// DaemonProcess implementation.
- virtual scoped_ptr<DesktopSession> DoCreateDesktopSession(
+ scoped_ptr<DesktopSession> DoCreateDesktopSession(
int terminal_id,
const ScreenResolution& resolution,
bool virtual_terminal) override;
- virtual void DoCrashNetworkProcess(
+ void DoCrashNetworkProcess(
const tracked_objects::Location& location) override;
- virtual void LaunchNetworkProcess() override;
+ 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_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698