| Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| index a2b8f5d5a253ddc953d75c7d6270bb10bb158fa0..868e375fb07a56086e4e4af09129c67807bd51fa 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| @@ -98,7 +98,7 @@ void LayoutTableRow::StyleDidChange(StyleDifference diff,
|
| }
|
| }
|
|
|
| -const BorderValue& LayoutTableRow::BorderAdjoiningStartCell(
|
| +BorderValue LayoutTableRow::BorderAdjoiningStartCell(
|
| const LayoutTableCell* cell) const {
|
| #if DCHECK_IS_ON()
|
| DCHECK(cell->IsFirstOrLastCellInRow());
|
| @@ -108,7 +108,7 @@ const BorderValue& LayoutTableRow::BorderAdjoiningStartCell(
|
| return Style()->BorderStart();
|
| }
|
|
|
| -const BorderValue& LayoutTableRow::BorderAdjoiningEndCell(
|
| +BorderValue LayoutTableRow::BorderAdjoiningEndCell(
|
| const LayoutTableCell* cell) const {
|
| #if DCHECK_IS_ON()
|
| DCHECK(cell->IsFirstOrLastCellInRow());
|
|
|