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

Unified Diff: ui/app_list/views/top_icon_animation_view.h

Issue 681873002: 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
« no previous file with comments | « ui/app_list/views/tile_item_view.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/views/top_icon_animation_view.h
diff --git a/ui/app_list/views/top_icon_animation_view.h b/ui/app_list/views/top_icon_animation_view.h
index a3c12861c6f2a3c7e8a1cc71b0107d2cfb64d459..787b384e2219f8c393e7c54b905cbe3254dfc75e 100644
--- a/ui/app_list/views/top_icon_animation_view.h
+++ b/ui/app_list/views/top_icon_animation_view.h
@@ -41,7 +41,7 @@ class TopIconAnimationView : public views::View,
TopIconAnimationView(const gfx::ImageSkia& icon,
const gfx::Rect& scaled_rect,
bool open_folder);
- virtual ~TopIconAnimationView();
+ ~TopIconAnimationView() override;
void AddObserver(TopIconAnimationObserver* observer);
void RemoveObserver(TopIconAnimationObserver* observer);
@@ -54,12 +54,12 @@ class TopIconAnimationView : public views::View,
private:
// views::View overrides:
- virtual gfx::Size GetPreferredSize() const override;
- virtual void Layout() override;
+ gfx::Size GetPreferredSize() const override;
+ void Layout() override;
// ui::ImplicitAnimationObserver overrides:
- virtual void OnImplicitAnimationsCompleted() override;
- virtual bool RequiresNotificationWhenAnimatorDestroyed() const override;
+ void OnImplicitAnimationsCompleted() override;
+ bool RequiresNotificationWhenAnimatorDestroyed() const override;
gfx::Size icon_size_;
views::ImageView* icon_; // Owned by views hierarchy.
« no previous file with comments | « ui/app_list/views/tile_item_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698