| Index: Source/core/rendering/RenderView.h
|
| diff --git a/Source/core/rendering/RenderView.h b/Source/core/rendering/RenderView.h
|
| index cc98c36da0410c8b215f096c7bccf0ad5212311e..4339e6b044cb9c88c87a3c194875f20ef20bf86f 100644
|
| --- a/Source/core/rendering/RenderView.h
|
| +++ b/Source/core/rendering/RenderView.h
|
| @@ -207,6 +207,8 @@ public:
|
| void disableLayoutState() { m_layoutStateDisableCount++; }
|
| void enableLayoutState() { ASSERT(m_layoutStateDisableCount > 0); m_layoutStateDisableCount--; }
|
|
|
| + void viewResized();
|
| +
|
| private:
|
| virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
|
| virtual const RenderObject* pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap&) const OVERRIDE;
|
| @@ -250,6 +252,8 @@ private:
|
|
|
| bool shouldUsePrintingLayout() const;
|
|
|
| + bool trySimplifiedLayoutOnHeightChange();
|
| +
|
| FrameView* m_frameView;
|
|
|
| RenderObject* m_selectionStart;
|
|
|