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

Unified Diff: ash/system/user/rounded_image_view.h

Issue 683473005: 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/user/button_from_view.h ('k') | ash/system/user/tray_user.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/user/rounded_image_view.h
diff --git a/ash/system/user/rounded_image_view.h b/ash/system/user/rounded_image_view.h
index d76c8d3bd518a3af0f2a8ef90374dfdf307fa0de..8e191ae1306aadf69582a8032c5b1065d8adff50 100644
--- a/ash/system/user/rounded_image_view.h
+++ b/ash/system/user/rounded_image_view.h
@@ -20,7 +20,7 @@ class RoundedImageView : public views::View {
// |corner_radius|. If |active_user| is set, the icon will be drawn in
// full colors - otherwise it will fade into the background.
RoundedImageView(int corner_radius, bool active_user);
- virtual ~RoundedImageView();
+ ~RoundedImageView() override;
// Set the image that should be displayed. The image contents is copied to the
// receiver's image.
@@ -34,8 +34,8 @@ class RoundedImageView : public views::View {
private:
// Overridden from views::View.
- virtual gfx::Size GetPreferredSize() const override;
- virtual void OnPaint(gfx::Canvas* canvas) override;
+ gfx::Size GetPreferredSize() const override;
+ void OnPaint(gfx::Canvas* canvas) override;
gfx::ImageSkia image_;
gfx::ImageSkia resized_;
« no previous file with comments | « ash/system/user/button_from_view.h ('k') | ash/system/user/tray_user.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698