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

Unified Diff: Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.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/ScrollbarThemeMacNonOverlayAPI.h
diff --git a/Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h b/Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h
index 3894eb81d3c562a84c5ade1dd005450ae416285a..2bcd9c8fb2e665ce6fc5471db6aeadf3d69cc6fd 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;
+ virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override;
+ virtual bool usesOverlayScrollbars() const override { return false; }
+ virtual ScrollbarButtonsPlacement buttonsPlacement() const override;
- virtual bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect) OVERRIDE;
+ virtual 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;
+ 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;
- virtual void updateButtonPlacement() OVERRIDE;
+ virtual void updateButtonPlacement() override;
- virtual bool hasButtons(ScrollbarThemeClient*) OVERRIDE;
- virtual bool hasThumb(ScrollbarThemeClient*) OVERRIDE;
+ virtual bool hasButtons(ScrollbarThemeClient*) override;
+ virtual bool hasThumb(ScrollbarThemeClient*) override;
- virtual int minimumThumbLength(ScrollbarThemeClient*) OVERRIDE;
+ virtual 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