| Index: ui/native_theme/native_theme_aura.h
|
| diff --git a/ui/native_theme/native_theme_aura.h b/ui/native_theme/native_theme_aura.h
|
| index e2fbfc4e741f42ac764795f448c36849b3579edd..b823568421782e289434a9da3d58bde330b0e9da 100644
|
| --- a/ui/native_theme/native_theme_aura.h
|
| +++ b/ui/native_theme/native_theme_aura.h
|
| @@ -14,9 +14,10 @@ namespace ui {
|
| class NATIVE_THEME_EXPORT NativeThemeAura : public NativeThemeBase {
|
| public:
|
| static NativeThemeAura* instance();
|
| + static NativeThemeAura* web_instance();
|
|
|
| protected:
|
| - NativeThemeAura();
|
| + explicit NativeThemeAura(bool use_overlay_scrollbars);
|
| ~NativeThemeAura() override;
|
|
|
| // Overridden from NativeThemeBase:
|
| @@ -52,6 +53,8 @@ class NATIVE_THEME_EXPORT NativeThemeAura : public NativeThemeBase {
|
| const ExtraParams& extra) const override;
|
|
|
| private:
|
| + bool use_overlay_scrollbars_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(NativeThemeAura);
|
| };
|
|
|
|
|