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

Unified Diff: cc/test/fake_scrollbar.h

Issue 628443002: replace OVERRIDE and FINAL with override and final in cc/ (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 | « cc/test/fake_scoped_ui_resource.h ('k') | cc/test/fake_tile_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_scrollbar.h
diff --git a/cc/test/fake_scrollbar.h b/cc/test/fake_scrollbar.h
index 8e6d4545e01d9bb2fce6d85564a559a9bfcc1c51..638735d7c5c2a31e91bb0504d2f1185b553012e7 100644
--- a/cc/test/fake_scrollbar.h
+++ b/cc/test/fake_scrollbar.h
@@ -18,17 +18,17 @@ class FakeScrollbar : public Scrollbar {
virtual ~FakeScrollbar();
// Scrollbar implementation.
- virtual ScrollbarOrientation Orientation() const OVERRIDE;
- virtual bool IsLeftSideVerticalScrollbar() const OVERRIDE;
- virtual gfx::Point Location() const OVERRIDE;
- virtual bool IsOverlay() const OVERRIDE;
- virtual bool HasThumb() const OVERRIDE;
- virtual int ThumbThickness() const OVERRIDE;
- virtual int ThumbLength() const OVERRIDE;
- virtual gfx::Rect TrackRect() const OVERRIDE;
+ virtual ScrollbarOrientation Orientation() const override;
+ virtual bool IsLeftSideVerticalScrollbar() const override;
+ virtual gfx::Point Location() const override;
+ virtual bool IsOverlay() const override;
+ virtual bool HasThumb() const override;
+ virtual int ThumbThickness() const override;
+ virtual int ThumbLength() const override;
+ virtual gfx::Rect TrackRect() const override;
virtual void PaintPart(SkCanvas* canvas,
ScrollbarPart part,
- const gfx::Rect& content_rect) OVERRIDE;
+ const gfx::Rect& content_rect) override;
void set_location(const gfx::Point& location) { location_ = location; }
void set_track_rect(const gfx::Rect& track_rect) { track_rect_ = track_rect; }
« no previous file with comments | « cc/test/fake_scoped_ui_resource.h ('k') | cc/test/fake_tile_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698