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 f3b2da2a283166a3de476d289d4484bce13371af..4f3d722d5978e9b7c83df46ac7481b7dfbcbbc45 100644 |
--- a/chrome/browser/ui/views/tab_icon_view.h |
+++ b/chrome/browser/ui/views/tab_icon_view.h |
@@ -33,11 +33,12 @@ class TabIconView : public views::MenuButton { |
// Set the throbber to the light style (for use on dark backgrounds). |
void set_is_light(bool is_light) { is_light_ = is_light; } |
- // Overridden from View |
- void OnPaint(gfx::Canvas* canvas) override; |
+ private: |
+ // views::MenuButton: |
gfx::Size GetPreferredSize() const override; |
+ const char* GetClassName() const override; |
+ void OnPaint(gfx::Canvas* canvas) override; |
- private: |
void PaintThrobber(gfx::Canvas* canvas); |
void PaintFavicon(gfx::Canvas* canvas, const gfx::ImageSkia& image); |
void PaintIcon(gfx::Canvas* canvas, |