| Index: Source/core/rendering/RenderView.cpp
|
| diff --git a/Source/core/rendering/RenderView.cpp b/Source/core/rendering/RenderView.cpp
|
| index b71d4fee5c8a8aa4290258d89dce063b7603cff8..bdf42297e86a379fc7a2268a1cbaf071d5c3df10 100644
|
| --- a/Source/core/rendering/RenderView.cpp
|
| +++ b/Source/core/rendering/RenderView.cpp
|
| @@ -39,7 +39,6 @@
|
| #include "core/rendering/RenderLayer.h"
|
| #include "core/rendering/RenderLayerBacking.h"
|
| #include "core/rendering/RenderLayerCompositor.h"
|
| -#include "core/rendering/RenderLazyBlock.h"
|
| #include "core/rendering/RenderSelectionInfo.h"
|
| #include "core/rendering/RenderWidget.h"
|
|
|
| @@ -57,7 +56,6 @@ RenderView::RenderView(Document* document)
|
| , m_pageLogicalHeightChanged(false)
|
| , m_layoutState(0)
|
| , m_layoutStateDisableCount(0)
|
| - , m_firstLazyBlock(0)
|
| , m_renderQuoteHead(0)
|
| , m_renderCounterCount(0)
|
| {
|
| @@ -116,12 +114,6 @@ bool RenderView::isChildAllowed(RenderObject* child, RenderStyle*) const
|
| return child->isBox();
|
| }
|
|
|
| -void RenderView::markLazyBlocksForLayout()
|
| -{
|
| - for (RenderLazyBlock* block = m_firstLazyBlock; block; block = block->next())
|
| - block->setNeedsLayout();
|
| -}
|
| -
|
| void RenderView::layoutContent(const LayoutState& state)
|
| {
|
| UNUSED_PARAM(state);
|
|
|