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

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

Issue 945803004: Merge back LayoutLayerModelObject into RenderBoxModelObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
Index: Source/core/rendering/RenderBlockFlow.cpp
diff --git a/Source/core/rendering/RenderBlockFlow.cpp b/Source/core/rendering/RenderBlockFlow.cpp
index 322eec15ef10ced64d3741759d894bb9648a38db..1cacf3fd78e0202dae8b470ef41ae402750bcde6 100644
--- a/Source/core/rendering/RenderBlockFlow.cpp
+++ b/Source/core/rendering/RenderBlockFlow.cpp
@@ -2691,7 +2691,7 @@ LayoutUnit RenderBlockFlow::logicalRightFloatOffsetForLine(LayoutUnit logicalTop
return fixedOffset;
}
-LayoutRect RenderBlockFlow::selectionRectForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer) const
+LayoutRect RenderBlockFlow::selectionRectForPaintInvalidation(const RenderBoxModelObject* paintInvalidationContainer) const
{
LayoutRect rect = selectionGapRectsForPaintInvalidation(paintInvalidationContainer);
// FIXME: groupedMapping() leaks the squashing abstraction.
@@ -2700,7 +2700,7 @@ LayoutRect RenderBlockFlow::selectionRectForPaintInvalidation(const LayoutLayerM
return rect;
}
-GapRects RenderBlockFlow::selectionGapRectsForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer) const
+GapRects RenderBlockFlow::selectionGapRectsForPaintInvalidation(const RenderBoxModelObject* paintInvalidationContainer) const
{
ASSERT(!needsLayout());

Powered by Google App Engine
This is Rietveld 408576698