Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp |
index e7dfbd5d600d8bd73e9b0dd773b26d280807bc38..41c3d05011de6cfa6eee51659284b878039422e6 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp |
@@ -1697,7 +1697,7 @@ LayoutTable* LayoutTable::CreateAnonymousWithParent( |
return new_table; |
} |
-const BorderValue& LayoutTable::TableStartBorderAdjoiningCell( |
+BorderValue LayoutTable::TableStartBorderAdjoiningCell( |
const LayoutTableCell* cell) const { |
#if DCHECK_IS_ON() |
DCHECK(cell->IsFirstOrLastCellInRow()); |
@@ -1708,7 +1708,7 @@ const BorderValue& LayoutTable::TableStartBorderAdjoiningCell( |
return Style()->BorderEnd(); |
} |
-const BorderValue& LayoutTable::TableEndBorderAdjoiningCell( |
+BorderValue LayoutTable::TableEndBorderAdjoiningCell( |
const LayoutTableCell* cell) const { |
#if DCHECK_IS_ON() |
DCHECK(cell->IsFirstOrLastCellInRow()); |