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

Unified Diff: remoting/host/desktop_session_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/desktop_session_win.h ('k') | remoting/host/disconnect_window_linux.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 b1477836e157a6f011bb9e8ac7e9eb379f12bfa1..445febd670afb701a86ffc25560ab63cf270e531 100644
--- a/remoting/host/desktop_session_win.cc
+++ b/remoting/host/desktop_session_win.cc
@@ -96,10 +96,10 @@ class ConsoleSession : public DesktopSessionWin {
protected:
// DesktopSession overrides.
- virtual void SetScreenResolution(const ScreenResolution& resolution) OVERRIDE;
+ virtual void SetScreenResolution(const ScreenResolution& resolution) override;
// DesktopSessionWin overrides.
- virtual void InjectSas() OVERRIDE;
+ virtual void InjectSas() override;
private:
scoped_ptr<SasInjector> sas_injector_;
@@ -131,10 +131,10 @@ class RdpSession : public DesktopSessionWin {
protected:
// DesktopSession overrides.
- virtual void SetScreenResolution(const ScreenResolution& resolution) OVERRIDE;
+ virtual void SetScreenResolution(const ScreenResolution& resolution) override;
// DesktopSessionWin overrides.
- virtual void InjectSas() OVERRIDE;
+ virtual void InjectSas() override;
private:
// An implementation of IRdpDesktopSessionEventHandler interface that forwards
@@ -145,13 +145,13 @@ class RdpSession : public DesktopSessionWin {
virtual ~EventHandler();
// IUnknown interface.
- STDMETHOD_(ULONG, AddRef)() OVERRIDE;
- STDMETHOD_(ULONG, Release)() OVERRIDE;
- STDMETHOD(QueryInterface)(REFIID riid, void** ppv) OVERRIDE;
+ STDMETHOD_(ULONG, AddRef)() override;
+ STDMETHOD_(ULONG, Release)() override;
+ STDMETHOD(QueryInterface)(REFIID riid, void** ppv) override;
// IRdpDesktopSessionEventHandler interface.
- STDMETHOD(OnRdpConnected)() OVERRIDE;
- STDMETHOD(OnRdpClosed)() OVERRIDE;
+ STDMETHOD(OnRdpConnected)() override;
+ STDMETHOD(OnRdpClosed)() override;
private:
ULONG ref_count_;
« no previous file with comments | « remoting/host/desktop_session_win.h ('k') | remoting/host/disconnect_window_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698