| Index: chrome/browser/chromeos/status/status_area_button.h
|
| diff --git a/chrome/browser/chromeos/status/status_area_button.h b/chrome/browser/chromeos/status/status_area_button.h
|
| index 57661f07c6cb8fa59f44ad509190846fe928d1a8..98e01ce78add2ef1f4acbb4b504abd258e2f2f34 100644
|
| --- a/chrome/browser/chromeos/status/status_area_button.h
|
| +++ b/chrome/browser/chromeos/status/status_area_button.h
|
| @@ -6,6 +6,7 @@
|
| #define CHROME_BROWSER_CHROMEOS_STATUS_STATUS_AREA_BUTTON_H_
|
| #pragma once
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/string16.h"
|
| #include "views/controls/button/menu_button.h"
|
| #include "views/controls/menu/view_menu_delegate.h"
|
| @@ -57,11 +58,11 @@ class StatusAreaButton : public views::MenuButton {
|
| StatusAreaButton(Delegate* button_delegate,
|
| views::ViewMenuDelegate* menu_delegate);
|
| virtual ~StatusAreaButton() {}
|
| - virtual void PaintButton(gfx::Canvas* canvas, PaintButtonMode mode);
|
| + virtual void PaintButton(gfx::Canvas* canvas, PaintButtonMode mode) OVERRIDE;
|
|
|
| // Overrides TextButton's SetText to clear max text size before seting new
|
| // text content so that the button size would fit the new text size.
|
| - virtual void SetText(const string16& text);
|
| + virtual void SetText(const string16& text) OVERRIDE;
|
|
|
| // views::MenuButton overrides.
|
| virtual bool Activate() OVERRIDE;
|
|
|