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

Unified Diff: Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.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
Index: Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h
diff --git a/Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h b/Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h
index 2bcd9c8fb2e665ce6fc5471db6aeadf3d69cc6fd..428a6b0c000fe25cd10680b5de5487be0a02b3d0 100644
--- a/Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h
+++ b/Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h
@@ -37,23 +37,23 @@ namespace blink {
class PLATFORM_EXPORT ScrollbarThemeMacNonOverlayAPI : public ScrollbarThemeMacCommon {
public:
- virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override;
- virtual bool usesOverlayScrollbars() const override { return false; }
- virtual ScrollbarButtonsPlacement buttonsPlacement() const override;
+ int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override;
+ bool usesOverlayScrollbars() const override { return false; }
+ ScrollbarButtonsPlacement buttonsPlacement() const override;
- virtual bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect) override;
+ bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect) override;
protected:
- virtual IntRect trackRect(ScrollbarThemeClient*, bool painting = false) override;
- virtual IntRect backButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) override;
- virtual IntRect forwardButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) override;
+ IntRect trackRect(ScrollbarThemeClient*, bool painting = false) override;
+ IntRect backButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) override;
+ IntRect forwardButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) override;
- virtual void updateButtonPlacement() override;
+ void updateButtonPlacement() override;
- virtual bool hasButtons(ScrollbarThemeClient*) override;
- virtual bool hasThumb(ScrollbarThemeClient*) override;
+ bool hasButtons(ScrollbarThemeClient*) override;
+ bool hasThumb(ScrollbarThemeClient*) override;
- virtual int minimumThumbLength(ScrollbarThemeClient*) override;
+ int minimumThumbLength(ScrollbarThemeClient*) override;
};
}
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeMacCommon.h ('k') | Source/platform/scroll/ScrollbarThemeMacOverlayAPI.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698