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

Unified Diff: Source/platform/scroll/ScrollbarThemeNonMacCommon.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
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeMock.h ('k') | Source/platform/scroll/ScrollbarThemeOverlay.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scroll/ScrollbarThemeNonMacCommon.h
diff --git a/Source/platform/scroll/ScrollbarThemeNonMacCommon.h b/Source/platform/scroll/ScrollbarThemeNonMacCommon.h
index 01ce165bdd8f418ab265dc197c4ebde8822cbb8b..cde17190b21613355fd91a9bd3f9ff28a1458d42 100644
--- a/Source/platform/scroll/ScrollbarThemeNonMacCommon.h
+++ b/Source/platform/scroll/ScrollbarThemeNonMacCommon.h
@@ -37,15 +37,15 @@ namespace blink {
class PLATFORM_EXPORT ScrollbarThemeNonMacCommon : public ScrollbarTheme {
protected:
- virtual bool hasButtons(ScrollbarThemeClient*) OVERRIDE { return true; }
- virtual bool hasThumb(ScrollbarThemeClient*) OVERRIDE;
+ virtual bool hasButtons(ScrollbarThemeClient*) override { return true; }
+ 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 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 void paintTrackBackground(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
- virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
+ virtual void paintTrackBackground(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) override;
+ virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) override;
virtual IntSize buttonSize(ScrollbarThemeClient*) = 0;
};
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeMock.h ('k') | Source/platform/scroll/ScrollbarThemeOverlay.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698