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

Unified Diff: remoting/host/desktop_session_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/desktop_session_win.h ('k') | remoting/host/disconnect_window_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_session_win.cc
diff --git a/remoting/host/desktop_session_win.cc b/remoting/host/desktop_session_win.cc
index c98f22936d210916e8c91afc11c18c11a8fb01c7..f3c0881d6230be455fadd0dc13220e1a3fe19652 100644
--- a/remoting/host/desktop_session_win.cc
+++ b/remoting/host/desktop_session_win.cc
@@ -91,14 +91,14 @@ class ConsoleSession : public DesktopSessionWin {
DaemonProcess* daemon_process,
int id,
WtsTerminalMonitor* monitor);
- virtual ~ConsoleSession();
+ ~ConsoleSession() override;
protected:
// DesktopSession overrides.
- virtual void SetScreenResolution(const ScreenResolution& resolution) override;
+ void SetScreenResolution(const ScreenResolution& resolution) override;
// DesktopSessionWin overrides.
- virtual void InjectSas() override;
+ void InjectSas() override;
private:
scoped_ptr<SasInjector> sas_injector_;
@@ -119,7 +119,7 @@ class RdpSession : public DesktopSessionWin {
DaemonProcess* daemon_process,
int id,
WtsTerminalMonitor* monitor);
- virtual ~RdpSession();
+ ~RdpSession() override;
// Performs the part of initialization that can fail.
bool Initialize(const ScreenResolution& resolution);
@@ -130,10 +130,10 @@ class RdpSession : public DesktopSessionWin {
protected:
// DesktopSession overrides.
- virtual void SetScreenResolution(const ScreenResolution& resolution) override;
+ void SetScreenResolution(const ScreenResolution& resolution) override;
// DesktopSessionWin overrides.
- virtual void InjectSas() override;
+ void InjectSas() override;
private:
// An implementation of IRdpDesktopSessionEventHandler interface that forwards
« no previous file with comments | « remoting/host/desktop_session_win.h ('k') | remoting/host/disconnect_window_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698