| Index: Source/core/paint/ThemePainterMac.h
|
| diff --git a/Source/core/paint/ThemePainterMac.h b/Source/core/paint/ThemePainterMac.h
|
| index ad2efb62f860be3cd3b64d9c10af354c3a9c45f8..a3ea4e3a6f79628d1fc7aa179591917ec7ac52fb 100644
|
| --- a/Source/core/paint/ThemePainterMac.h
|
| +++ b/Source/core/paint/ThemePainterMac.h
|
| @@ -35,19 +35,19 @@ public:
|
| ThemePainterMac(LayoutThemeMac& layoutTheme) : m_layoutTheme(layoutTheme) { }
|
|
|
| private:
|
| - virtual bool paintCapsLockIndicator(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintMeter(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintTextField(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintTextArea(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintSearchField(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintSearchFieldCancelButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintSearchFieldDecoration(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| - virtual bool paintSearchFieldResultsDecoration(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintCapsLockIndicator(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintMeter(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintTextField(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintTextArea(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintSearchField(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintSearchFieldCancelButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintSearchFieldDecoration(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
| + bool paintSearchFieldResultsDecoration(LayoutObject*, const PaintInfo&, const IntRect&) override;
|
|
|
| LayoutThemeMac& m_layoutTheme;
|
| };
|
|
|