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

Unified Diff: Source/core/paint/ThemePainterDefault.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/TextPainterTest.cpp ('k') | Source/core/paint/ThemePainterMac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ThemePainterDefault.h
diff --git a/Source/core/paint/ThemePainterDefault.h b/Source/core/paint/ThemePainterDefault.h
index 5c80f1c0dd9b86cfb271dde4f39dd07d12f4a598..b4285f17ce22809041a47dc5601d92d621f7a2d8 100644
--- a/Source/core/paint/ThemePainterDefault.h
+++ b/Source/core/paint/ThemePainterDefault.h
@@ -35,20 +35,20 @@ namespace blink {
class ThemePainterDefault final : public ThemePainter {
private:
- virtual bool paintCheckbox(LayoutObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintRadio(LayoutObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintTextField(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 paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintInnerSpinButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintTextArea(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 paintSearchFieldResultsDecoration(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintCheckbox(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintRadio(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintTextField(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintInnerSpinButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintTextArea(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintSearchField(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintSearchFieldCancelButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ bool paintSearchFieldResultsDecoration(LayoutObject*, const PaintInfo&, const IntRect&) override;
};
} // namespace blink
« no previous file with comments | « Source/core/paint/TextPainterTest.cpp ('k') | Source/core/paint/ThemePainterMac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698