| 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);
|
|
|