Index: third_party/WebKit/Source/core/paint/ThemePainterMac.h |
diff --git a/third_party/WebKit/Source/core/paint/ThemePainterMac.h b/third_party/WebKit/Source/core/paint/ThemePainterMac.h |
index 63f2cb30d354bbaf8a168931d89d33e81111e83b..16645773e72d4304345d7a9516f68f6e687b1ff6 100644 |
--- a/third_party/WebKit/Source/core/paint/ThemePainterMac.h |
+++ b/third_party/WebKit/Source/core/paint/ThemePainterMac.h |
@@ -32,19 +32,23 @@ class LayoutThemeMac; |
class ThemePainterMac final : public ThemePainter { |
public: |
- ThemePainterMac(LayoutThemeMac&, Theme*); |
+ ThemePainterMac(LayoutThemeMac&); |
private: |
+ bool paintButton(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
+ bool paintCheckbox(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
bool paintCapsLockIndicator(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
- bool paintTextField(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
- bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
+ bool paintInnerSpinButton(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
bool paintMenuList(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
bool paintMenuListButton(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
bool paintProgressBar(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
- bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
+ bool paintRadio(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
bool paintSliderThumb(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
+ bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
bool paintSearchField(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
bool paintSearchFieldCancelButton(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
+ bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
+ bool paintTextField(const LayoutObject&, const PaintInfo&, const IntRect&) override; |
LayoutThemeMac& m_layoutTheme; |
}; |