| Index: third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/TableRowPainter.cpp b/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| index 64653b94c0ab3e2db929fa6635e04360a6f39c23..f61ba8704776c3336ccfebf0a25cf3b273e8feaa 100644
|
| --- a/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| @@ -30,7 +30,7 @@ void TableRowPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paint
|
| if (m_layoutTableRow.styleRef().hasBackground()) {
|
| // Paint row background of behind the cells.
|
| for (LayoutTableCell* cell = m_layoutTableRow.firstCell(); cell; cell = cell->nextCell())
|
| - TableCellPainter(*cell).paintContainerBackgroundBehindCell(paintInfoForCells, paintOffset, m_layoutTableRow, DisplayItem::TableCellBackgroundFromRow);
|
| + TableCellPainter(*cell).paintContainerBackgroundBehindCell(paintInfoForCells, paintOffset, m_layoutTableRow, DisplayItem::kTableCellBackgroundFromRow);
|
| }
|
| paintBoxShadow(paintInfo, paintOffset, Inset);
|
| }
|
| @@ -57,7 +57,7 @@ void TableRowPainter::paintBoxShadow(const PaintInfo& paintInfo, const LayoutPoi
|
| if (!m_layoutTableRow.styleRef().boxShadow())
|
| return;
|
|
|
| - DisplayItem::Type type = shadowStyle == Normal ? DisplayItem::TableRowBoxShadowNormal : DisplayItem::TableRowBoxShadowInset;
|
| + DisplayItem::Type type = shadowStyle == Normal ? DisplayItem::kTableRowBoxShadowNormal : DisplayItem::kTableRowBoxShadowInset;
|
| if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutTableRow, type))
|
| return;
|
|
|
| @@ -71,7 +71,7 @@ void TableRowPainter::paintBackgroundBehindCell(const LayoutTableCell& cell, con
|
| {
|
| DCHECK(m_layoutTableRow.styleRef().hasBackground() && !m_layoutTableRow.hasSelfPaintingLayer());
|
| LayoutPoint cellPoint = m_layoutTableRow.section()->flipForWritingModeForChild(&cell, paintOffset);
|
| - TableCellPainter(cell).paintContainerBackgroundBehindCell(paintInfo, cellPoint, m_layoutTableRow, DisplayItem::TableCellBackgroundFromRow);
|
| + TableCellPainter(cell).paintContainerBackgroundBehindCell(paintInfo, cellPoint, m_layoutTableRow, DisplayItem::kTableCellBackgroundFromRow);
|
| }
|
|
|
| } // namespace blink
|
|
|