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

Unified Diff: Source/platform/scroll/ScrollbarThemeMacOverlayAPI.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/ScrollbarThemeMacOverlayAPI.h
diff --git a/Source/platform/scroll/ScrollbarThemeMacOverlayAPI.h b/Source/platform/scroll/ScrollbarThemeMacOverlayAPI.h
index d6e0b0f49ef2d0ee9493d0a1d3688ef25246ffad..45528e48093b81bc5231c36c28bcd26a08a17ae6 100644
--- a/Source/platform/scroll/ScrollbarThemeMacOverlayAPI.h
+++ b/Source/platform/scroll/ScrollbarThemeMacOverlayAPI.h
@@ -39,30 +39,30 @@ namespace blink {
class PLATFORM_EXPORT ScrollbarThemeMacOverlayAPI : public ScrollbarThemeMacCommon {
public:
- virtual void updateEnabledState(ScrollbarThemeClient*) OVERRIDE;
- virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) OVERRIDE;
- virtual bool usesOverlayScrollbars() const OVERRIDE;
- virtual void updateScrollbarOverlayStyle(ScrollbarThemeClient*) OVERRIDE;
- virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE;
+ virtual void updateEnabledState(ScrollbarThemeClient*) override;
+ virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) override;
+ virtual bool usesOverlayScrollbars() const override;
+ virtual void updateScrollbarOverlayStyle(ScrollbarThemeClient*) override;
+ virtual ScrollbarButtonsPlacement buttonsPlacement() const override;
- virtual void registerScrollbar(ScrollbarThemeClient*) OVERRIDE;
- virtual void unregisterScrollbar(ScrollbarThemeClient*) OVERRIDE;
+ virtual void registerScrollbar(ScrollbarThemeClient*) override;
+ virtual void unregisterScrollbar(ScrollbarThemeClient*) override;
void setNewPainterForScrollbar(ScrollbarThemeClient*, ScrollbarPainter);
ScrollbarPainter painterForScrollbar(ScrollbarThemeClient*);
- virtual void paintTrackBackground(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
- virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
+ virtual void paintTrackBackground(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) override;
+ virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) 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 bool hasButtons(ScrollbarThemeClient*) OVERRIDE { return false; }
- virtual bool hasThumb(ScrollbarThemeClient*) OVERRIDE;
+ virtual bool hasButtons(ScrollbarThemeClient*) override { return false; }
+ virtual bool hasThumb(ScrollbarThemeClient*) override;
- virtual int minimumThumbLength(ScrollbarThemeClient*) OVERRIDE;
+ virtual int minimumThumbLength(ScrollbarThemeClient*) override;
};
}
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.h ('k') | Source/platform/scroll/ScrollbarThemeMock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698