| Index: ui/gfx/native_theme_base.h
|
| diff --git a/ui/gfx/native_theme_base.h b/ui/gfx/native_theme_base.h
|
| index 351486cad18d2ebd0c9c8ab5df49d498aa588933..6488e684a8e2ae148acfa5953c3c97d19e66e649 100644
|
| --- a/ui/gfx/native_theme_base.h
|
| +++ b/ui/gfx/native_theme_base.h
|
| @@ -6,6 +6,7 @@
|
| #define UI_GFX_NATIVE_THEME_BASE_H_
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/compiler_specific.h"
|
| #include "skia/ext/platform_canvas.h"
|
| #include "ui/gfx/native_theme.h"
|
|
|
| @@ -19,12 +20,12 @@ class NativeThemeBase : public NativeTheme {
|
| // NativeTheme implementation:
|
| virtual gfx::Size GetPartSize(Part part,
|
| State state,
|
| - const ExtraParams& extra) const;
|
| + const ExtraParams& extra) const OVERRIDE;
|
| virtual void Paint(SkCanvas* canvas,
|
| Part part,
|
| State state,
|
| const gfx::Rect& rect,
|
| - const ExtraParams& extra) const;
|
| + const ExtraParams& extra) const OVERRIDE;
|
|
|
| protected:
|
| NativeThemeBase();
|
|
|