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

Unified Diff: ash/wm/gestures/long_press_affordance_handler.h

Issue 645513008: 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/wm/event_client_impl.h ('k') | ash/wm/gestures/long_press_affordance_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/gestures/long_press_affordance_handler.h
diff --git a/ash/wm/gestures/long_press_affordance_handler.h b/ash/wm/gestures/long_press_affordance_handler.h
index 01a9c09c758ada954138642b9e39fc711b04861e..9c7a1a469a825dc67799d5cf65184e9e54a4906e 100644
--- a/ash/wm/gestures/long_press_affordance_handler.h
+++ b/ash/wm/gestures/long_press_affordance_handler.h
@@ -31,7 +31,7 @@ class LongPressAffordanceHandler : public gfx::LinearAnimation,
public aura::WindowObserver {
public:
LongPressAffordanceHandler();
- virtual ~LongPressAffordanceHandler();
+ ~LongPressAffordanceHandler() override;
// Displays or removes long press affordance according to the |event|.
void ProcessEvent(aura::Window* target, ui::GestureEvent* event);
@@ -52,11 +52,11 @@ class LongPressAffordanceHandler : public gfx::LinearAnimation,
void SetTapDownTarget(aura::Window* target);
// Overridden from gfx::LinearAnimation.
- virtual void AnimateToState(double state) override;
- virtual void AnimationStopped() override;
+ void AnimateToState(double state) override;
+ void AnimationStopped() override;
// Overridden from aura::WindowObserver.
- virtual void OnWindowDestroying(aura::Window* window) override;
+ void OnWindowDestroying(aura::Window* window) override;
scoped_ptr<LongPressAffordanceView> view_;
gfx::Point tap_down_location_;
« no previous file with comments | « ash/wm/event_client_impl.h ('k') | ash/wm/gestures/long_press_affordance_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698