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

Unified Diff: Source/platform/scroll/FramelessScrollView.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/plugins/PluginListBuilder.h ('k') | Source/platform/scroll/ScrollAnimatorNone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scroll/FramelessScrollView.h
diff --git a/Source/platform/scroll/FramelessScrollView.h b/Source/platform/scroll/FramelessScrollView.h
index 756bee8294355c91c22538505f9825d0cf65d349..2f15cbe9eb3875ec2f51afcb9477f72c994c7bf8 100644
--- a/Source/platform/scroll/FramelessScrollView.h
+++ b/Source/platform/scroll/FramelessScrollView.h
@@ -74,17 +74,17 @@ public:
virtual IntRect scrollableAreaBoundingBox() const OVERRIDE;
// Widget public methods:
- virtual void invalidateRect(const IntRect&);
+ virtual void invalidateRect(const IntRect&) OVERRIDE;
// ScrollView public methods:
- virtual HostWindow* hostWindow() const;
- virtual IntRect windowClipRect(bool clipToContents = true) const;
+ virtual HostWindow* hostWindow() const OVERRIDE;
+ virtual IntRect windowClipRect(bool clipToContents = true) const OVERRIDE;
protected:
// ScrollView protected methods:
- virtual void paintContents(GraphicsContext*, const IntRect&);
- virtual void contentsResized();
- virtual void scrollbarExistenceDidChange();
+ virtual void paintContents(GraphicsContext*, const IntRect&) OVERRIDE;
+ virtual void contentsResized() OVERRIDE;
+ virtual void scrollbarExistenceDidChange() OVERRIDE;
private:
FramelessScrollViewClient* m_client;
« no previous file with comments | « Source/platform/plugins/PluginListBuilder.h ('k') | Source/platform/scroll/ScrollAnimatorNone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698