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

Unified Diff: Source/core/rendering/RenderTable.h

Issue 716023002: Paint code cleanup: remove unnecessary indirections through the Render* code in several cases. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/rendering/RenderPart.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTable.h
diff --git a/Source/core/rendering/RenderTable.h b/Source/core/rendering/RenderTable.h
index 47c7a210c2a985c63138e3dc3e6680bdffaac56c..3826d9e57e24651ac1170c1f05d30b5ec726bdef 100644
--- a/Source/core/rendering/RenderTable.h
+++ b/Source/core/rendering/RenderTable.h
@@ -269,10 +269,9 @@ public:
void addColumn(const RenderTableCol*);
void removeColumn(const RenderTableCol*);
- // FIXME: this method should be moved into TablePainter.
- virtual void paintBoxDecorationBackground(PaintInfo&, const LayoutPoint&) override;
+ virtual void paintBoxDecorationBackground(PaintInfo&, const LayoutPoint&) override final;
- virtual void paintMask(PaintInfo&, const LayoutPoint&) override;
+ virtual void paintMask(PaintInfo&, const LayoutPoint&) override final;
const CollapsedBorderValues& collapsedBorders() { return m_collapsedBorders; }
void subtractCaptionRect(LayoutRect&) const;
« no previous file with comments | « Source/core/rendering/RenderPart.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698