| Index: Source/core/frame/FrameView.h
|
| diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
|
| index a8bb967ccd28eda6f44ecbb7bee578e7afa13204..658e9df69d0958472e573808d1a75d3d7163a007 100644
|
| --- a/Source/core/frame/FrameView.h
|
| +++ b/Source/core/frame/FrameView.h
|
| @@ -233,6 +233,7 @@ public:
|
|
|
| void incrementVisuallyNonEmptyCharacterCount(unsigned);
|
| void incrementVisuallyNonEmptyPixelCount(const IntSize&);
|
| + bool isVisuallyNonEmpty() const { return m_isVisuallyNonEmpty; }
|
| void setIsVisuallyNonEmpty() { m_isVisuallyNonEmpty = true; }
|
| void enableAutoSizeMode(const IntSize& minSize, const IntSize& maxSize);
|
| void disableAutoSizeMode();
|
| @@ -777,7 +778,6 @@ private:
|
| unsigned m_visuallyNonEmptyCharacterCount;
|
| unsigned m_visuallyNonEmptyPixelCount;
|
| bool m_isVisuallyNonEmpty;
|
| - bool m_firstVisuallyNonEmptyLayoutCallbackPending;
|
|
|
| RefPtrWillBeMember<Node> m_scrollAnchor;
|
|
|
|
|