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

Unified Diff: chrome/browser/ui/views/tab_icon_view.h

Issue 680133002: 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: chrome/browser/ui/views/tab_icon_view.h
diff --git a/chrome/browser/ui/views/tab_icon_view.h b/chrome/browser/ui/views/tab_icon_view.h
index de26271dc5b616d4273a36949b810b3f987f53fe..f3b2da2a283166a3de476d289d4484bce13371af 100644
--- a/chrome/browser/ui/views/tab_icon_view.h
+++ b/chrome/browser/ui/views/tab_icon_view.h
@@ -25,7 +25,7 @@ class TabIconView : public views::MenuButton {
TabIconView(chrome::TabIconViewModel* model,
views::MenuButtonListener* menu_button_listener);
- virtual ~TabIconView();
+ ~TabIconView() override;
// Invoke whenever the tab state changes or the throbber should update.
void Update();
@@ -34,8 +34,8 @@ class TabIconView : public views::MenuButton {
void set_is_light(bool is_light) { is_light_ = is_light; }
// Overridden from View
- virtual void OnPaint(gfx::Canvas* canvas) override;
- virtual gfx::Size GetPreferredSize() const override;
+ void OnPaint(gfx::Canvas* canvas) override;
+ gfx::Size GetPreferredSize() const override;
private:
void PaintThrobber(gfx::Canvas* canvas);

Powered by Google App Engine
This is Rietveld 408576698