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

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

Issue 137933002: Update more 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/ScrollView.h ('k') | Source/platform/transforms/IdentityTransformOperation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scroll/ScrollbarThemeGtkOrAura.h
diff --git a/Source/platform/scroll/ScrollbarThemeGtkOrAura.h b/Source/platform/scroll/ScrollbarThemeGtkOrAura.h
index 3b0f167a2f20fbbd2b47861d55b88f1d25eaa71a..e07d7856d26e7b237d3089680ae86625910b8aef 100644
--- a/Source/platform/scroll/ScrollbarThemeGtkOrAura.h
+++ b/Source/platform/scroll/ScrollbarThemeGtkOrAura.h
@@ -37,15 +37,15 @@ namespace WebCore {
class PLATFORM_EXPORT ScrollbarThemeGtkOrAura : public ScrollbarThemeNonMacCommon {
public:
- virtual int scrollbarThickness(ScrollbarControlSize);
+ virtual int scrollbarThickness(ScrollbarControlSize) OVERRIDE;
protected:
- virtual void paintTrackPiece(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart);
- virtual void paintButton(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart);
- virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&);
- virtual bool shouldCenterOnThumb(ScrollbarThemeClient*, const PlatformMouseEvent&);
- virtual IntSize buttonSize(ScrollbarThemeClient*);
- virtual int minimumThumbLength(ScrollbarThemeClient*);
+ virtual void paintTrackPiece(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) OVERRIDE;
+ virtual void paintButton(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) OVERRIDE;
+ virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
+ virtual bool shouldCenterOnThumb(ScrollbarThemeClient*, const PlatformMouseEvent&) OVERRIDE;
+ virtual IntSize buttonSize(ScrollbarThemeClient*) OVERRIDE;
+ virtual int minimumThumbLength(ScrollbarThemeClient*) OVERRIDE;
};
} // namespace WebCore
« no previous file with comments | « Source/platform/scroll/ScrollView.h ('k') | Source/platform/transforms/IdentityTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698