| Index: ui/views/controls/button/checkbox.h
|
| diff --git a/ui/views/controls/button/checkbox.h b/ui/views/controls/button/checkbox.h
|
| index 919c141587ef855221917e0323d4a0f6ae01d5b5..654039463623970ae54d1f3bac7182a00642009a 100644
|
| --- a/ui/views/controls/button/checkbox.h
|
| +++ b/ui/views/controls/button/checkbox.h
|
| @@ -16,6 +16,9 @@ class SkPaint;
|
|
|
| namespace views {
|
|
|
| +class InkDropHover;
|
| +class InkDropRipple;
|
| +
|
| // A native themed class representing a checkbox. This class does not use
|
| // platform specific objects to replicate the native platforms looks and feel.
|
| class VIEWS_EXPORT Checkbox : public LabelButton {
|
| @@ -45,6 +48,9 @@ class VIEWS_EXPORT Checkbox : public LabelButton {
|
| void OnFocus() override;
|
| void OnBlur() override;
|
| void OnNativeThemeChanged(const ui::NativeTheme* theme) override;
|
| + std::unique_ptr<InkDropRipple> CreateInkDropRipple() const override;
|
| + std::unique_ptr<InkDropHighlight> CreateInkDropHighlight() const override;
|
| + SkColor GetInkDropBaseColor() const override;
|
| gfx::ImageSkia GetImage(ButtonState for_state) const override;
|
|
|
| // Set the image shown for each button state depending on whether it is
|
|
|