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

Unified Diff: ui/events/gesture_detection/scale_gesture_listeners.h

Issue 667923002: Standardize usage of virtual/override/final in ui/ (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 | « ui/events/gesture_detection/motion_event_generic.h ('k') | ui/events/gesture_detection/velocity_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/gesture_detection/scale_gesture_listeners.h
diff --git a/ui/events/gesture_detection/scale_gesture_listeners.h b/ui/events/gesture_detection/scale_gesture_listeners.h
index 583ef7ea06e4ba20addc1a7788c52a3a5bea0fdf..a976f470b686159f946fbbaaef8fe3a782073dcf 100644
--- a/ui/events/gesture_detection/scale_gesture_listeners.h
+++ b/ui/events/gesture_detection/scale_gesture_listeners.h
@@ -34,12 +34,9 @@ class GESTURE_DETECTION_EXPORT SimpleScaleGestureListener
: public ScaleGestureListener {
public:
// ScaleGestureListener implementation.
- virtual bool OnScale(const ScaleGestureDetector&,
- const MotionEvent&) override;
- virtual bool OnScaleBegin(const ScaleGestureDetector&,
- const MotionEvent&) override;
- virtual void OnScaleEnd(const ScaleGestureDetector&,
- const MotionEvent&) override;
+ bool OnScale(const ScaleGestureDetector&, const MotionEvent&) override;
+ bool OnScaleBegin(const ScaleGestureDetector&, const MotionEvent&) override;
+ void OnScaleEnd(const ScaleGestureDetector&, const MotionEvent&) override;
};
} // namespace ui
« no previous file with comments | « ui/events/gesture_detection/motion_event_generic.h ('k') | ui/events/gesture_detection/velocity_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698