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

Unified Diff: chrome/browser/ui/toolbar/wrench_icon_painter.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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: chrome/browser/ui/toolbar/wrench_icon_painter.h
diff --git a/chrome/browser/ui/toolbar/wrench_icon_painter.h b/chrome/browser/ui/toolbar/wrench_icon_painter.h
index f3ffb7e377ea1543e1bfbdd37807b57193813c3c..c50d7b20d2d5ded350fa2124e97ac94bd1fa2e3d 100644
--- a/chrome/browser/ui/toolbar/wrench_icon_painter.h
+++ b/chrome/browser/ui/toolbar/wrench_icon_painter.h
@@ -45,7 +45,7 @@ class WrenchIconPainter : gfx::AnimationDelegate {
};
explicit WrenchIconPainter(Delegate* delegate);
- virtual ~WrenchIconPainter();
+ ~WrenchIconPainter() override;
// If |severity| is not |SEVERITY_NONE| then the wrench icon is colored to
// match the severity level.
@@ -63,7 +63,7 @@ class WrenchIconPainter : gfx::AnimationDelegate {
FRIEND_TEST_ALL_PREFIXES(WrenchIconPainterTest, PaintCallback);
// AnimationDelegate:
- virtual void AnimationProgressed(const gfx::Animation* animation) override;
+ void AnimationProgressed(const gfx::Animation* animation) override;
// Gets the image ID used to draw bars for the current severity level.
int GetCurrentSeverityImageID() const;

Powered by Google App Engine
This is Rietveld 408576698