| Index: Source/core/rendering/RenderView.h
|
| diff --git a/Source/core/rendering/RenderView.h b/Source/core/rendering/RenderView.h
|
| index 18d3dc3a0454d0684ed3ab8950b5ff65d99a1e7c..30ee2ec5b62d190df8be15d2a12005804e532fb6 100644
|
| --- a/Source/core/rendering/RenderView.h
|
| +++ b/Source/core/rendering/RenderView.h
|
| @@ -23,7 +23,6 @@
|
| #define RenderView_h
|
|
|
| #include "core/frame/FrameView.h"
|
| -#include "core/paint/ViewDisplayList.h"
|
| #include "core/rendering/LayoutState.h"
|
| #include "core/rendering/PaintInvalidationState.h"
|
| #include "core/rendering/RenderBlockFlow.h"
|
| @@ -165,14 +164,6 @@ public:
|
| void popLayoutState();
|
| virtual void invalidateTreeIfNeeded(const PaintInvalidationState&) override final;
|
|
|
| - ViewDisplayList& viewDisplayList()
|
| - {
|
| - ASSERT(RuntimeEnabledFeatures::slimmingPaintEnabled());
|
| - if (!m_viewDisplayList)
|
| - m_viewDisplayList = adoptPtr(new ViewDisplayList());
|
| - return *m_viewDisplayList;
|
| - }
|
| -
|
| private:
|
| virtual void mapLocalToContainer(const RenderLayerModelObject* paintInvalidationContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0, const PaintInvalidationState* = 0) const override;
|
| virtual const RenderObject* pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap&) const override;
|
| @@ -209,7 +200,6 @@ private:
|
| unsigned m_renderCounterCount;
|
|
|
| unsigned m_hitTestCount;
|
| - OwnPtr<ViewDisplayList> m_viewDisplayList;
|
| };
|
|
|
| DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderView, isRenderView());
|
|
|