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

Unified Diff: Source/platform/scroll/ScrollAnimatorNone.h

Issue 131003004: Update platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | « Source/platform/scroll/FramelessScrollView.h ('k') | Source/platform/scroll/ScrollView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scroll/ScrollAnimatorNone.h
diff --git a/Source/platform/scroll/ScrollAnimatorNone.h b/Source/platform/scroll/ScrollAnimatorNone.h
index 9f1c4c92bb82896160c2d13576f83063eb86a9f9..d1cbeb434a1f9b64f54f90a3549a4930503737b1 100644
--- a/Source/platform/scroll/ScrollAnimatorNone.h
+++ b/Source/platform/scroll/ScrollAnimatorNone.h
@@ -48,15 +48,15 @@ public:
explicit ScrollAnimatorNone(ScrollableArea*);
virtual ~ScrollAnimatorNone();
- virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float delta);
- virtual void scrollToOffsetWithoutAnimation(const FloatPoint&);
+ virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float delta) OVERRIDE;
+ virtual void scrollToOffsetWithoutAnimation(const FloatPoint&) OVERRIDE;
- virtual void cancelAnimations();
- virtual void serviceScrollAnimations();
+ virtual void cancelAnimations() OVERRIDE;
+ virtual void serviceScrollAnimations() OVERRIDE;
- virtual void willEndLiveResize();
- virtual void didAddVerticalScrollbar(Scrollbar*);
- virtual void didAddHorizontalScrollbar(Scrollbar*);
+ virtual void willEndLiveResize() OVERRIDE;
+ virtual void didAddVerticalScrollbar(Scrollbar*) OVERRIDE;
+ virtual void didAddHorizontalScrollbar(Scrollbar*) OVERRIDE;
enum Curve {
Linear,
« no previous file with comments | « Source/platform/scroll/FramelessScrollView.h ('k') | Source/platform/scroll/ScrollView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698