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

Unified Diff: ui/views/controls/scrollbar/kennedy_scroll_bar.h

Issue 677563004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: ui/views/controls/scrollbar/kennedy_scroll_bar.h
diff --git a/ui/views/controls/scrollbar/kennedy_scroll_bar.h b/ui/views/controls/scrollbar/kennedy_scroll_bar.h
index bd67a059751eff6d227e41996f1693021f646690..cb13732862f7dc4e485fe6e5a7485f3b005ead93 100644
--- a/ui/views/controls/scrollbar/kennedy_scroll_bar.h
+++ b/ui/views/controls/scrollbar/kennedy_scroll_bar.h
@@ -15,19 +15,19 @@ namespace views {
class VIEWS_EXPORT KennedyScrollBar : public BaseScrollBar {
public:
explicit KennedyScrollBar(bool horizontal);
- virtual ~KennedyScrollBar();
+ ~KennedyScrollBar() override;
protected:
// BaseScrollBar overrides:
- virtual gfx::Rect GetTrackBounds() const override;
+ gfx::Rect GetTrackBounds() const override;
// ScrollBar overrides:
- virtual int GetLayoutSize() const override;
+ int GetLayoutSize() const override;
// View overrides:
- virtual gfx::Size GetPreferredSize() const override;
- virtual void Layout() override;
- virtual void OnPaint(gfx::Canvas* canvas) override;
+ gfx::Size GetPreferredSize() const override;
+ void Layout() override;
+ void OnPaint(gfx::Canvas* canvas) override;
private:
DISALLOW_COPY_AND_ASSIGN(KennedyScrollBar);
« no previous file with comments | « ui/views/controls/scrollbar/base_scroll_bar_thumb.h ('k') | ui/views/controls/scrollbar/kennedy_scroll_bar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698