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

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

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 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/ScrollbarThemeOverlay.h
diff --git a/Source/platform/scroll/ScrollbarThemeOverlay.h b/Source/platform/scroll/ScrollbarThemeOverlay.h
index 48a9ac75f88d4cf50e8aa3b70ddb7dead0c95799..d61f1162c4175eef77df202bb116f6a6a5ba9021 100644
--- a/Source/platform/scroll/ScrollbarThemeOverlay.h
+++ b/Source/platform/scroll/ScrollbarThemeOverlay.h
@@ -41,22 +41,22 @@ public:
ScrollbarThemeOverlay(int thumbThickness, int scrollbarMargin, HitTestBehavior, Color);
virtual ~ScrollbarThemeOverlay() { }
- virtual int scrollbarThickness(ScrollbarControlSize) OVERRIDE;
- virtual bool usesOverlayScrollbars() const OVERRIDE;
+ virtual int scrollbarThickness(ScrollbarControlSize) override;
+ virtual bool usesOverlayScrollbars() const override;
- virtual int thumbPosition(ScrollbarThemeClient*) OVERRIDE;
- virtual int thumbLength(ScrollbarThemeClient*) OVERRIDE;
+ virtual int thumbPosition(ScrollbarThemeClient*) override;
+ virtual int thumbLength(ScrollbarThemeClient*) override;
- virtual bool hasButtons(ScrollbarThemeClient*) OVERRIDE { return false; };
- virtual bool hasThumb(ScrollbarThemeClient*) OVERRIDE;
+ virtual bool hasButtons(ScrollbarThemeClient*) override { return false; };
+ virtual bool hasThumb(ScrollbarThemeClient*) override;
- virtual IntRect backButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) OVERRIDE;
- virtual IntRect forwardButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) OVERRIDE;
- virtual IntRect trackRect(ScrollbarThemeClient*, bool painting = false) OVERRIDE;
- virtual int thumbThickness(ScrollbarThemeClient*) OVERRIDE;
+ virtual IntRect backButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) override;
+ virtual IntRect forwardButtonRect(ScrollbarThemeClient*, ScrollbarPart, bool painting = false) override;
+ virtual IntRect trackRect(ScrollbarThemeClient*, bool painting = false) override;
+ virtual int thumbThickness(ScrollbarThemeClient*) override;
- virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
- virtual ScrollbarPart hitTest(ScrollbarThemeClient*, const IntPoint&) OVERRIDE;
+ virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) override;
+ virtual ScrollbarPart hitTest(ScrollbarThemeClient*, const IntPoint&) override;
private:
int m_thumbThickness;
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeNonMacCommon.h ('k') | Source/platform/scroll/ScrollbarThemeOverlayMock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698