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

Unified Diff: Source/core/rendering/LayoutRepainter.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/FastTextAutosizer.cpp ('k') | Source/core/rendering/RenderBR.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/LayoutRepainter.cpp
diff --git a/Source/core/rendering/LayoutRepainter.cpp b/Source/core/rendering/LayoutRepainter.cpp
index 4d1d87a1e94690d3a62ed2fb9d3b01e71e652bd1..b8dee6f2762a5f8b1427de6174e0ced4e6444ab6 100644
--- a/Source/core/rendering/LayoutRepainter.cpp
+++ b/Source/core/rendering/LayoutRepainter.cpp
@@ -40,12 +40,12 @@ LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint)
return;
if (m_checkForRepaint) {
- m_repaintContainer = m_object.containerForRepaint();
+ m_repaintContainer = m_object.containerForPaintInvalidation();
{
// Hits in compositing/video/video-controls-layer-creation.html
DisableCompositingQueryAsserts disabler;
- m_oldBounds = m_object.boundsRectForRepaint(m_repaintContainer);
- m_oldOffset = m_object.positionFromRepaintContainer(m_repaintContainer);
+ m_oldBounds = m_object.boundsRectForPaintInvalidation(m_repaintContainer);
+ m_oldOffset = m_object.positionFromPaintInvalidationContainer(m_repaintContainer);
}
}
}
« no previous file with comments | « Source/core/rendering/FastTextAutosizer.cpp ('k') | Source/core/rendering/RenderBR.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698