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

Unified Diff: third_party/WebKit/Source/core/paint/TableRowPainter.h

Issue 2786463004: Paint backgrounds of a table section/row in one display item (Closed)
Patch Set: - Created 3 years, 8 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
Index: third_party/WebKit/Source/core/paint/TableRowPainter.h
diff --git a/third_party/WebKit/Source/core/paint/TableRowPainter.h b/third_party/WebKit/Source/core/paint/TableRowPainter.h
index 22339acfa5ee2f2b12650b869d9cd46e0ff32291..3068835788d188e7ad63921ab4bb2be70c055a54 100644
--- a/third_party/WebKit/Source/core/paint/TableRowPainter.h
+++ b/third_party/WebKit/Source/core/paint/TableRowPainter.h
@@ -10,6 +10,7 @@
namespace blink {
+class CellSpan;
class LayoutPoint;
class LayoutTableCell;
class LayoutTableRow;
@@ -24,12 +25,15 @@ class TableRowPainter {
void paint(const PaintInfo&, const LayoutPoint&);
void paintOutline(const PaintInfo&, const LayoutPoint&);
- void paintBoxShadow(const PaintInfo&, const LayoutPoint&, ShadowStyle);
+ void paintBoxDecorationBackground(const PaintInfo&,
+ const LayoutPoint&,
+ const CellSpan& dirtiedColumns);
+
+ private:
void paintBackgroundBehindCell(const LayoutTableCell&,
const PaintInfo&,
const LayoutPoint&);
- private:
const LayoutTableRow& m_layoutTableRow;
};
« no previous file with comments | « third_party/WebKit/Source/core/paint/TablePainterTest.cpp ('k') | third_party/WebKit/Source/core/paint/TableRowPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698