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

Unified Diff: Source/core/rendering/RenderTable.cpp

Issue 332543002: Rename Repaint to Paint Invalidation Part 4 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « Source/core/rendering/RenderTable.h ('k') | Source/core/rendering/RenderTableCell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTable.cpp
diff --git a/Source/core/rendering/RenderTable.cpp b/Source/core/rendering/RenderTable.cpp
index a6763ab1a2b99d7d0390816eb266b542597af3f1..a3f626ad065dab6490374307aca0d156e21a81ff 100644
--- a/Source/core/rendering/RenderTable.cpp
+++ b/Source/core/rendering/RenderTable.cpp
@@ -381,7 +381,7 @@ void RenderTable::layoutCaption(RenderTableCaption* caption)
}
caption->setLogicalLocation(LayoutPoint(caption->marginStart(), captionLogicalTop));
- if (!selfNeedsLayout() && caption->checkForRepaintDuringLayout())
+ if (!selfNeedsLayout() && caption->checkForPaintInvalidationDuringLayout())
caption->repaintDuringLayoutIfMoved(captionRect);
setLogicalHeight(logicalHeight() + caption->logicalHeight() + collapsedMarginBeforeForChild(caption) + collapsedMarginAfterForChild(caption));
@@ -425,7 +425,7 @@ void RenderTable::layout()
// to call this before we call borderStart/borderEnd to avoid getting a stale value.
recalcBordersInRowDirection();
- LayoutRepainter repainter(*this, checkForRepaintDuringLayout());
+ LayoutRepainter repainter(*this, checkForPaintInvalidationDuringLayout());
SubtreeLayoutScope layouter(*this);
« no previous file with comments | « Source/core/rendering/RenderTable.h ('k') | Source/core/rendering/RenderTableCell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698