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

Unified Diff: ui/native_theme/native_theme_aura.h

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « ui/native_theme/native_theme_android.h ('k') | ui/native_theme/native_theme_aurawin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/native_theme/native_theme_aura.h
diff --git a/ui/native_theme/native_theme_aura.h b/ui/native_theme/native_theme_aura.h
index 82a6ec9b8e0f9e47af3e2f1c61368561d62dcb6e..2bcfbed65a43651345121dcf17eabc04bfb90137 100644
--- a/ui/native_theme/native_theme_aura.h
+++ b/ui/native_theme/native_theme_aura.h
@@ -28,36 +28,36 @@ class NATIVE_THEME_EXPORT NativeThemeAura : public FallbackTheme {
virtual void PaintMenuPopupBackground(
SkCanvas* canvas,
const gfx::Size& size,
- const MenuBackgroundExtraParams& menu_background) const OVERRIDE;
+ const MenuBackgroundExtraParams& menu_background) const override;
virtual void PaintMenuItemBackground(
SkCanvas* canvas,
State state,
const gfx::Rect& rect,
- const MenuListExtraParams& menu_list) const OVERRIDE;
+ const MenuListExtraParams& menu_list) const override;
virtual void PaintArrowButton(SkCanvas* gc,
const gfx::Rect& rect,
Part direction,
- State state) const OVERRIDE;
+ State state) const override;
virtual void PaintScrollbarTrack(
SkCanvas* sk_canvas,
Part part,
State state,
const ScrollbarTrackExtraParams& extra_params,
- const gfx::Rect& rect) const OVERRIDE;
+ const gfx::Rect& rect) const override;
virtual void PaintScrollbarThumb(SkCanvas* sk_canvas,
Part part,
State state,
- const gfx::Rect& rect) const OVERRIDE;
+ const gfx::Rect& rect) const override;
virtual void PaintScrollbarCorner(SkCanvas* canvas,
State state,
- const gfx::Rect& rect) const OVERRIDE;
+ const gfx::Rect& rect) const override;
virtual void PaintScrollbarThumbStateTransition(SkCanvas* canvas,
State startState,
State endState,
double progress,
const gfx::Rect& rect) const
- OVERRIDE;
+ override;
// Returns the NineImagePainter used to paint the specified state, creating if
// necessary. If no image is provided for the specified state the normal state
« no previous file with comments | « ui/native_theme/native_theme_android.h ('k') | ui/native_theme/native_theme_aurawin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698