| Index: ui/app_list/views/page_switcher.cc
|
| diff --git a/ui/app_list/views/page_switcher.cc b/ui/app_list/views/page_switcher.cc
|
| index 84077f9a6a86a46e2b588d64ce781504a059b75b..4ab6d6c481d7ceca274c37ca7e5c337402f2c0dd 100644
|
| --- a/ui/app_list/views/page_switcher.cc
|
| +++ b/ui/app_list/views/page_switcher.cc
|
| @@ -49,11 +49,11 @@ class PageSwitcherButton : public views::CustomButton {
|
| void set_button_width(int button_width) { button_width_ = button_width; }
|
|
|
| // Overridden from views::View:
|
| - virtual gfx::Size GetPreferredSize() const OVERRIDE {
|
| + virtual gfx::Size GetPreferredSize() const override {
|
| return gfx::Size(button_width_, kButtonHeight);
|
| }
|
|
|
| - virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE {
|
| + virtual void OnPaint(gfx::Canvas* canvas) override {
|
| if (state() == STATE_HOVERED)
|
| PaintButton(canvas, kPagerHoverColor);
|
| else
|
|
|