Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(923)

Unified Diff: Source/core/paint/ThemePainterMac.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/paint/ThemePainterDefault.h ('k') | Source/core/plugins/PluginView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/core/paint/ThemePainterDefault.h ('k') | Source/core/plugins/PluginView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698