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

Unified Diff: ash/magnifier/partial_magnification_controller.h

Issue 680153002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting 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/magnifier/magnification_controller.cc ('k') | ash/popup_message.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/magnifier/partial_magnification_controller.h
diff --git a/ash/magnifier/partial_magnification_controller.h b/ash/magnifier/partial_magnification_controller.h
index f78f52be9a6885628b2b6dc20f509d5de2f04422..7c73685c7457710f20be639f2dc1158537046270 100644
--- a/ash/magnifier/partial_magnification_controller.h
+++ b/ash/magnifier/partial_magnification_controller.h
@@ -23,7 +23,7 @@ class PartialMagnificationController
public views::WidgetObserver {
public:
PartialMagnificationController();
- virtual ~PartialMagnificationController();
+ ~PartialMagnificationController() override;
// Enables (or disables if |enabled| is false) partial screen magnifier
// feature.
@@ -63,13 +63,13 @@ class PartialMagnificationController
void RemoveZoomWidgetObservers();
// ui::EventHandler overrides:
- virtual void OnMouseEvent(ui::MouseEvent* event) override;
+ void OnMouseEvent(ui::MouseEvent* event) override;
// Overridden from WindowObserver:
- virtual void OnWindowDestroying(aura::Window* window) override;
+ void OnWindowDestroying(aura::Window* window) override;
// Overridden from WidgetObserver:
- virtual void OnWidgetDestroying(views::Widget* widget) override;
+ void OnWidgetDestroying(views::Widget* widget) override;
// True if the magnified window is in motion of zooming or un-zooming effect.
// Otherwise, false.
« no previous file with comments | « ash/magnifier/magnification_controller.cc ('k') | ash/popup_message.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698