| Index: third_party/WebKit/Source/core/frame/FrameView.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
|
| index bca05f80462497b0b65e9db18734b68eed96ec62..89437a2c9eead293725c7ecb6b853c74a5f3b100 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -32,6 +32,7 @@
|
| #include "core/frame/RootFrameViewport.h"
|
| #include "core/layout/ScrollAnchor.h"
|
| #include "core/layout/api/LayoutViewItem.h"
|
| +#include "core/paint/FirstMeaningfulPaintDetector.h"
|
| #include "core/paint/PaintInvalidationCapableScrollableArea.h"
|
| #include "core/paint/PaintPhase.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| @@ -262,6 +263,7 @@ public:
|
|
|
| bool invalidateViewportConstrainedObjects();
|
|
|
| + void incrementLayoutObjectCount() { m_layoutObjectCounter.increment(); }
|
| void incrementVisuallyNonEmptyCharacterCount(unsigned);
|
| void incrementVisuallyNonEmptyPixelCount(const IntSize&);
|
| bool isVisuallyNonEmpty() const { return m_isVisuallyNonEmpty; }
|
| @@ -831,6 +833,7 @@ private:
|
| unsigned m_visuallyNonEmptyCharacterCount;
|
| unsigned m_visuallyNonEmptyPixelCount;
|
| bool m_isVisuallyNonEmpty;
|
| + FirstMeaningfulPaintDetector::LayoutObjectCounter m_layoutObjectCounter;
|
|
|
| Member<Node> m_fragmentAnchor;
|
|
|
|
|