| Index: Source/core/page/FrameView.h
|
| diff --git a/Source/core/page/FrameView.h b/Source/core/page/FrameView.h
|
| index 8423c863c341abd24b72821c293d83e7179cc9a9..e3aeaa2e957455b37b7fb1053ec80e52b6a2c1ba 100644
|
| --- a/Source/core/page/FrameView.h
|
| +++ b/Source/core/page/FrameView.h
|
| @@ -32,6 +32,7 @@
|
| #include "core/platform/graphics/LayoutRect.h"
|
| #include "core/rendering/Pagination.h"
|
| #include "core/rendering/PaintPhase.h"
|
| +#include "core/rendering/PartialLayoutState.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/OwnPtr.h"
|
| #include "wtf/text/WTFString.h"
|
| @@ -334,6 +335,8 @@ public:
|
| // DEPRECATED: Use viewportConstrainedVisibleContentRect() instead.
|
| IntSize scrollOffsetForFixedPosition() const;
|
|
|
| + PartialLayoutState& partialLayout() { return m_partialLayout; }
|
| +
|
| protected:
|
| virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
|
| virtual void scrollContentsSlowPath(const IntRect& updateRect);
|
| @@ -531,6 +534,8 @@ private:
|
| bool m_hasSoftwareFilters;
|
|
|
| float m_visibleContentScaleFactor;
|
| +
|
| + PartialLayoutState m_partialLayout;
|
| };
|
|
|
| inline void FrameView::incrementVisuallyNonEmptyCharacterCount(unsigned count)
|
|
|