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

Unified Diff: Source/platform/scroll/ScrollbarThemeMacCommon.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/ScrollbarThemeMacCommon.h
diff --git a/Source/platform/scroll/ScrollbarThemeMacCommon.h b/Source/platform/scroll/ScrollbarThemeMacCommon.h
index e37fb7e94ce1eb8bca380b4191d7da405821ec5d..b32dc5e3d2111f5517794c6af76a31ab1f234f34 100644
--- a/Source/platform/scroll/ScrollbarThemeMacCommon.h
+++ b/Source/platform/scroll/ScrollbarThemeMacCommon.h
@@ -37,27 +37,27 @@ class PLATFORM_EXPORT ScrollbarThemeMacCommon : public ScrollbarTheme {
public:
virtual ~ScrollbarThemeMacCommon();
- virtual void registerScrollbar(ScrollbarThemeClient*) OVERRIDE;
- virtual void unregisterScrollbar(ScrollbarThemeClient*) OVERRIDE;
+ virtual void registerScrollbar(ScrollbarThemeClient*) override;
+ virtual void unregisterScrollbar(ScrollbarThemeClient*) override;
void preferencesChanged(float initialButtonDelay, float autoscrollButtonDelay, NSScrollerStyle preferredScrollerStyle, bool redraw);
- virtual bool supportsControlTints() const OVERRIDE { return true; }
+ virtual bool supportsControlTints() const override { return true; }
- virtual double initialAutoscrollTimerDelay() OVERRIDE;
- virtual double autoscrollTimerDelay() OVERRIDE;
+ virtual double initialAutoscrollTimerDelay() override;
+ virtual double autoscrollTimerDelay() override;
- virtual void paintOverhangBackground(GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) OVERRIDE;
- virtual void paintOverhangShadows(GraphicsContext*, const IntSize& scrollOffset, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) OVERRIDE;
- virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
+ virtual void paintOverhangBackground(GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) override;
+ virtual void paintOverhangShadows(GraphicsContext*, const IntSize& scrollOffset, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) override;
+ virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) override;
static NSScrollerStyle recommendedScrollerStyle();
static bool isOverlayAPIAvailable();
protected:
- virtual int maxOverlapBetweenPages() OVERRIDE { return 40; }
+ virtual int maxOverlapBetweenPages() override { return 40; }
- virtual bool shouldDragDocumentInsteadOfThumb(ScrollbarThemeClient*, const PlatformMouseEvent&) OVERRIDE;
+ virtual bool shouldDragDocumentInsteadOfThumb(ScrollbarThemeClient*, const PlatformMouseEvent&) override;
int scrollbarPartToHIPressedState(ScrollbarPart);
virtual void updateButtonPlacement() { }
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeAura.h ('k') | Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698