diff options
Diffstat (limited to 'WebCore/page/FrameView.h')
-rw-r--r-- | WebCore/page/FrameView.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/WebCore/page/FrameView.h b/WebCore/page/FrameView.h index cc32404..47dff43 100644 --- a/WebCore/page/FrameView.h +++ b/WebCore/page/FrameView.h @@ -88,6 +88,7 @@ public: void scheduleRelayoutOfSubtree(RenderObject*); void unscheduleRelayout(); bool layoutPending() const; + bool isInLayout() const { return m_inLayout; } RenderObject* layoutRoot(bool onlyDuringLayout = false) const; int layoutCount() const { return m_layoutCount; } @@ -317,7 +318,7 @@ private: RenderObject* m_layoutRoot; bool m_layoutSchedulingEnabled; - bool m_midLayout; + bool m_inLayout; int m_layoutCount; unsigned m_nestedLayoutCount; Timer<FrameView> m_postLayoutTasksTimer; |