| Index: ui/gfx/native_theme_win.h
|
| diff --git a/ui/gfx/native_theme_win.h b/ui/gfx/native_theme_win.h
|
| index 56be1db7a8be998040bb81ac750e7ba5100a9f94..8427442d015b6738be7b97d033357539b2400b6a 100644
|
| --- a/ui/gfx/native_theme_win.h
|
| +++ b/ui/gfx/native_theme_win.h
|
| @@ -16,6 +16,7 @@
|
| #include <uxtheme.h>
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/compiler_specific.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| #include "ui/gfx/native_theme.h"
|
| #include "ui/gfx/size.h"
|
| @@ -103,12 +104,13 @@ class UI_EXPORT NativeThemeWin : 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;
|
| + virtual SkColor GetSystemColor(ColorId color_id) const OVERRIDE;
|
|
|
| void PaintToNonPlatformCanvas(SkCanvas* canvas,
|
| Part part,
|
|
|