OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_AURA_H_ | 5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_AURA_H_ |
6 #define UI_NATIVE_THEME_NATIVE_THEME_AURA_H_ | 6 #define UI_NATIVE_THEME_NATIVE_THEME_AURA_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "ui/native_theme/native_theme_base.h" | 9 #include "ui/native_theme/native_theme_base.h" |
10 | 10 |
11 namespace ui { | 11 namespace ui { |
12 | 12 |
13 // Aura implementation of native theme support. | 13 // Aura implementation of native theme support. |
14 class NATIVE_THEME_EXPORT NativeThemeAura : public NativeThemeBase { | 14 class NATIVE_THEME_EXPORT NativeThemeAura : public NativeThemeBase { |
15 public: | 15 public: |
16 static NativeThemeAura* instance(); | 16 static NativeThemeAura* instance(); |
17 static NativeThemeAura* web_instance(); | |
18 | 17 |
19 protected: | 18 protected: |
20 explicit NativeThemeAura(bool use_overlay_scrollbars); | 19 NativeThemeAura(); |
21 ~NativeThemeAura() override; | 20 ~NativeThemeAura() override; |
22 | 21 |
23 // Overridden from NativeThemeBase: | 22 // Overridden from NativeThemeBase: |
24 SkColor GetSystemColor(ColorId color_id) const override; | 23 SkColor GetSystemColor(ColorId color_id) const override; |
25 void PaintMenuPopupBackground( | 24 void PaintMenuPopupBackground( |
26 SkCanvas* canvas, | 25 SkCanvas* canvas, |
27 const gfx::Size& size, | 26 const gfx::Size& size, |
28 const MenuBackgroundExtraParams& menu_background) const override; | 27 const MenuBackgroundExtraParams& menu_background) const override; |
29 void PaintMenuItemBackground( | 28 void PaintMenuItemBackground( |
30 SkCanvas* canvas, | 29 SkCanvas* canvas, |
(...skipping 15 matching lines...) Expand all Loading... |
46 const gfx::Rect& rect, | 45 const gfx::Rect& rect, |
47 ScrollbarOverlayColorTheme theme) const override; | 46 ScrollbarOverlayColorTheme theme) const override; |
48 void PaintScrollbarCorner(SkCanvas* canvas, | 47 void PaintScrollbarCorner(SkCanvas* canvas, |
49 State state, | 48 State state, |
50 const gfx::Rect& rect) const override; | 49 const gfx::Rect& rect) const override; |
51 gfx::Size GetPartSize(Part part, | 50 gfx::Size GetPartSize(Part part, |
52 State state, | 51 State state, |
53 const ExtraParams& extra) const override; | 52 const ExtraParams& extra) const override; |
54 | 53 |
55 private: | 54 private: |
56 bool use_overlay_scrollbars_; | |
57 | |
58 DISALLOW_COPY_AND_ASSIGN(NativeThemeAura); | 55 DISALLOW_COPY_AND_ASSIGN(NativeThemeAura); |
59 }; | 56 }; |
60 | 57 |
61 } // namespace ui | 58 } // namespace ui |
62 | 59 |
63 #endif // UI_NATIVE_THEME_NATIVE_THEME_AURA_H_ | 60 #endif // UI_NATIVE_THEME_NATIVE_THEME_AURA_H_ |
OLD | NEW |