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

Unified Diff: remoting/host/desktop_resizer_linux.cc

Issue 660803004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_process_unittest.cc ('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_resizer_linux.cc
diff --git a/remoting/host/desktop_resizer_linux.cc b/remoting/host/desktop_resizer_linux.cc
index f28c1c639b131ec2a91c481655c0789004b7a539..13ce6a7179a53b3b4dff7237d3cef61e1a2e6a30 100644
--- a/remoting/host/desktop_resizer_linux.cc
+++ b/remoting/host/desktop_resizer_linux.cc
@@ -124,14 +124,14 @@ class ScreenResources {
class DesktopResizerLinux : public DesktopResizer {
public:
DesktopResizerLinux();
- virtual ~DesktopResizerLinux();
+ ~DesktopResizerLinux() override;
// DesktopResizer interface
- virtual ScreenResolution GetCurrentResolution() override;
- virtual std::list<ScreenResolution> GetSupportedResolutions(
+ ScreenResolution GetCurrentResolution() override;
+ std::list<ScreenResolution> GetSupportedResolutions(
const ScreenResolution& preferred) override;
- virtual void SetResolution(const ScreenResolution& resolution) override;
- virtual void RestoreResolution(const ScreenResolution& original) override;
+ void SetResolution(const ScreenResolution& resolution) override;
+ void RestoreResolution(const ScreenResolution& original) override;
private:
// Create a mode, and attach it to the primary output. If the mode already
« no previous file with comments | « remoting/host/desktop_process_unittest.cc ('k') | remoting/host/disconnect_window_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698