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

Unified Diff: ash/display/screen_position_controller.h

Issue 685543003: 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 | « ash/display/screen_ash.cc ('k') | ash/display/screen_position_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/screen_position_controller.h
diff --git a/ash/display/screen_position_controller.h b/ash/display/screen_position_controller.h
index e1e8690b5a56539e8220103e0d93c6bae024b71a..fd288540ffef2866c5f6f853bc9ee5861f3409ec 100644
--- a/ash/display/screen_position_controller.h
+++ b/ash/display/screen_position_controller.h
@@ -13,18 +13,18 @@ namespace ash {
class ScreenPositionController : public aura::client::ScreenPositionClient {
public:
ScreenPositionController() {}
- virtual ~ScreenPositionController() {}
+ ~ScreenPositionController() override {}
// aura::client::ScreenPositionClient overrides:
- virtual void ConvertPointToScreen(const aura::Window* window,
- gfx::Point* point) override;
- virtual void ConvertPointFromScreen(const aura::Window* window,
- gfx::Point* point) override;
- virtual void ConvertHostPointToScreen(aura::Window* window,
- gfx::Point* point) override;
- virtual void SetBounds(aura::Window* window,
- const gfx::Rect& bounds,
- const gfx::Display& display) override;
+ void ConvertPointToScreen(const aura::Window* window,
+ gfx::Point* point) override;
+ void ConvertPointFromScreen(const aura::Window* window,
+ gfx::Point* point) override;
+ void ConvertHostPointToScreen(aura::Window* window,
+ gfx::Point* point) override;
+ void SetBounds(aura::Window* window,
+ const gfx::Rect& bounds,
+ const gfx::Display& display) override;
private:
DISALLOW_COPY_AND_ASSIGN(ScreenPositionController);
« no previous file with comments | « ash/display/screen_ash.cc ('k') | ash/display/screen_position_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698