| Index: Source/core/layout/LayoutFrameSet.cpp
|
| diff --git a/Source/core/layout/LayoutFrameSet.cpp b/Source/core/layout/LayoutFrameSet.cpp
|
| index 278f94e65c0b9a402d65fcf1f4a8d691d73a45ee..b7608614d0b32a0381a7a30147aae96dd789aa60 100644
|
| --- a/Source/core/layout/LayoutFrameSet.cpp
|
| +++ b/Source/core/layout/LayoutFrameSet.cpp
|
| @@ -40,7 +40,7 @@
|
| namespace blink {
|
|
|
| LayoutFrameSet::LayoutFrameSet(HTMLFrameSetElement* frameSet)
|
| - : RenderBox(frameSet)
|
| + : LayoutBox(frameSet)
|
| , m_isResizing(false)
|
| , m_isChildResizing(false)
|
| {
|
| @@ -380,7 +380,7 @@ void LayoutFrameSet::layout()
|
|
|
| positionFrames();
|
|
|
| - RenderBox::layout();
|
| + LayoutBox::layout();
|
|
|
| computeEdgeInfo();
|
|
|
| @@ -389,7 +389,7 @@ void LayoutFrameSet::layout()
|
| clearNeedsLayout();
|
| }
|
|
|
| -static void clearNeedsLayoutOnHiddenFrames(RenderBox* frame)
|
| +static void clearNeedsLayoutOnHiddenFrames(LayoutBox* frame)
|
| {
|
| for (; frame; frame = frame->nextSiblingBox()) {
|
| frame->setWidth(0);
|
| @@ -401,7 +401,7 @@ static void clearNeedsLayoutOnHiddenFrames(RenderBox* frame)
|
|
|
| void LayoutFrameSet::positionFrames()
|
| {
|
| - RenderBox* child = firstChildBox();
|
| + LayoutBox* child = firstChildBox();
|
| if (!child)
|
| return;
|
|
|
| @@ -571,7 +571,7 @@ CursorDirective LayoutFrameSet::getCursor(const LayoutPoint& point, Cursor& curs
|
| cursor = columnResizeCursor();
|
| return SetCursor;
|
| }
|
| - return RenderBox::getCursor(point, cursor);
|
| + return LayoutBox::getCursor(point, cursor);
|
| }
|
|
|
| } // namespace blink
|
|
|