Index: Source/core/rendering/RenderLineBoxList.cpp |
diff --git a/Source/core/rendering/RenderLineBoxList.cpp b/Source/core/rendering/RenderLineBoxList.cpp |
index c7bfd2128a7500109c6ddf40ca128df7d1be4dec..bac1be0168fa5cd7363d23ae357264f6bfb3a6a3 100644 |
--- a/Source/core/rendering/RenderLineBoxList.cpp |
+++ b/Source/core/rendering/RenderLineBoxList.cpp |
@@ -146,9 +146,9 @@ void RenderLineBoxList::dirtyLineBoxes() |
bool RenderLineBoxList::rangeIntersectsRect(LayoutBoxModelObject* renderer, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect& rect, const LayoutPoint& offset) const |
{ |
- RenderBox* block; |
+ LayoutBox* block; |
if (renderer->isBox()) |
- block = toRenderBox(renderer); |
+ block = toLayoutBox(renderer); |
else |
block = renderer->containingBlock(); |
LayoutUnit physicalStart = block->flipForWritingMode(logicalTop); |
@@ -261,7 +261,7 @@ void RenderLineBoxList::dirtyLinesFromChangedChild(LayoutObject* container, Layo |
continue; |
if (curr->isReplaced()) { |
- InlineBox* wrapper = toRenderBox(curr)->inlineBoxWrapper(); |
+ InlineBox* wrapper = toLayoutBox(curr)->inlineBoxWrapper(); |
if (wrapper) |
box = &wrapper->root(); |
} else if (curr->isText()) { |