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

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

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/Scrollbar.h ('k') | Source/platform/scroll/ScrollbarThemeMacCommon.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scroll/ScrollbarThemeAura.h
diff --git a/Source/platform/scroll/ScrollbarThemeAura.h b/Source/platform/scroll/ScrollbarThemeAura.h
index aa8b4140be9f32e0b1ebec0ac94adaa2c2b84c17..9a0fbec2c04bc47da4428590dfaeb4632c858574 100644
--- a/Source/platform/scroll/ScrollbarThemeAura.h
+++ b/Source/platform/scroll/ScrollbarThemeAura.h
@@ -37,14 +37,14 @@ namespace blink {
class PLATFORM_EXPORT ScrollbarThemeAura : public ScrollbarThemeNonMacCommon {
public:
- virtual int scrollbarThickness(ScrollbarControlSize) override;
+ int scrollbarThickness(ScrollbarControlSize) override;
protected:
- 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 IntSize buttonSize(ScrollbarThemeClient*) override;
- virtual int minimumThumbLength(ScrollbarThemeClient*) override;
+ void paintTrackPiece(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) override;
+ void paintButton(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) override;
+ void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) override;
+ IntSize buttonSize(ScrollbarThemeClient*) override;
+ int minimumThumbLength(ScrollbarThemeClient*) override;
};
} // namespace blink
« no previous file with comments | « Source/platform/scroll/Scrollbar.h ('k') | Source/platform/scroll/ScrollbarThemeMacCommon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698