summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/paint/table_painter.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/paint/table_painter.h')
-rw-r--r--chromium/third_party/blink/renderer/core/paint/table_painter.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/paint/table_painter.h b/chromium/third_party/blink/renderer/core/paint/table_painter.h
index bc22d687b4f..3cea620b7dc 100644
--- a/chromium/third_party/blink/renderer/core/paint/table_painter.h
+++ b/chromium/third_party/blink/renderer/core/paint/table_painter.h
@@ -19,12 +19,13 @@ class TablePainter {
public:
TablePainter(const LayoutTable& layout_table) : layout_table_(layout_table) {}
- void PaintObject(const PaintInfo&, const LayoutPoint&);
- void PaintBoxDecorationBackground(const PaintInfo&, const LayoutPoint&);
- void PaintMask(const PaintInfo&, const LayoutPoint&);
+ void PaintObject(const PaintInfo&, const LayoutPoint& paint_offset);
+ void PaintBoxDecorationBackground(const PaintInfo&,
+ const LayoutPoint& paint_offset);
+ void PaintMask(const PaintInfo&, const LayoutPoint& paint_offset);
private:
- void PaintCollapsedBorders(const PaintInfo&, const LayoutPoint&);
+ void PaintCollapsedBorders(const PaintInfo&);
const LayoutTable& layout_table_;
};