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

Unified Diff: ash/system/tray/fixed_sized_scroll_view.h

Issue 685483004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 | « ash/system/tray/fixed_sized_image_view.h ('k') | ash/system/tray/hover_highlight_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/fixed_sized_scroll_view.h
diff --git a/ash/system/tray/fixed_sized_scroll_view.h b/ash/system/tray/fixed_sized_scroll_view.h
index 522aab4aa0bb9c3556b102ff5dbfd776f8a6b87b..1b1923a70d8d155477efae088a47bfb633edd55c 100644
--- a/ash/system/tray/fixed_sized_scroll_view.h
+++ b/ash/system/tray/fixed_sized_scroll_view.h
@@ -15,7 +15,7 @@ namespace ash {
class FixedSizedScrollView : public views::ScrollView {
public:
FixedSizedScrollView();
- virtual ~FixedSizedScrollView();
+ ~FixedSizedScrollView() override;
void SetContentsView(views::View* view);
@@ -26,12 +26,12 @@ class FixedSizedScrollView : public views::ScrollView {
void set_fixed_size(const gfx::Size& size) { fixed_size_ = size; }
// Overridden from views::View:
- virtual gfx::Size GetPreferredSize() const override;
- virtual void Layout() override;
+ gfx::Size GetPreferredSize() const override;
+ void Layout() override;
protected:
// Overridden from views::View:
- virtual void OnBoundsChanged(const gfx::Rect& previous_bounds) override;
+ void OnBoundsChanged(const gfx::Rect& previous_bounds) override;
private:
gfx::Size fixed_size_;
« no previous file with comments | « ash/system/tray/fixed_sized_image_view.h ('k') | ash/system/tray/hover_highlight_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698