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

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

Issue 2465983002: Rename "paint invalidation rect" etc. to "visual rect". (Closed)
Patch Set: - Created 4 years, 1 month 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
Index: third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp b/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
index 194fc17b103908964f33154c10ac5a390106e93c..ba923455e9356954adaa151196e0989f538ca1e2 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
@@ -111,7 +111,7 @@ bool LayoutTableCol::canHaveChildren() const {
return isTableColumnGroup();
}
-LayoutRect LayoutTableCol::localOverflowRectForPaintInvalidation() const {
+LayoutRect LayoutTableCol::localVisualRect() const {
// Entire table gets invalidated, instead of invalidating
// every cell in the column. This is simpler, but suboptimal.
@@ -123,7 +123,7 @@ LayoutRect LayoutTableCol::localOverflowRectForPaintInvalidation() const {
// location is always zero.
ASSERT(this->location() == LayoutPoint());
- return table->localOverflowRectForPaintInvalidation();
+ return table->localVisualRect();
}
void LayoutTableCol::clearPreferredLogicalWidthsDirtyBits() {
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTableCol.h ('k') | third_party/WebKit/Source/core/layout/LayoutTableSection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698