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; |
}; |