Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(553)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTable.cpp

Issue 2840903003: s/Border/CollapsedBorder/ in method names handling collapsed borders (Closed)
Patch Set: - Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutTableCell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 80d088397a31799389c5b3cde1c750fc75b79c86..8048a1b435da4df825f9d30d91250efce6231c3f 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
@@ -803,11 +803,11 @@ void LayoutTable::RecalcCollapsedBordersIfNeeded() {
for (LayoutTableCell* cell = row->FirstCell(); cell;
cell = cell->NextCell()) {
DCHECK_EQ(cell->Table(), this);
- cell->CollectBorderValues(collapsed_borders_);
+ cell->CollectCollapsedBorderValues(collapsed_borders_);
}
}
}
- LayoutTableCell::SortBorderValues(collapsed_borders_);
+ LayoutTableCell::SortCollapsedBorderValues(collapsed_borders_);
}
void LayoutTable::AddOverflowFromChildren() {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutTableCell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698