| 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 b5ac796af45ce20abcfb6d26fd4656f287181270..bcf3c3bb7d7b8e1c712cfa66abba40e409a33084 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -716,6 +716,8 @@ private:
|
| void collectFrameTimingRequests(GraphicsLayerFrameTimingRequests&);
|
| void collectFrameTimingRequestsRecursive(GraphicsLayerFrameTimingRequests&);
|
|
|
| + void computeIntersectionObservations(PaintInvalidationState&);
|
| +
|
| LayoutSize m_size;
|
|
|
| typedef HashSet<RefPtr<LayoutEmbeddedObject>> EmbeddedObjectSet;
|
| @@ -834,6 +836,10 @@ private:
|
| // TODO(bokan): crbug.com/484188. We should specialize FrameView for the
|
| // main frame.
|
| OwnPtrWillBeMember<ScrollableArea> m_viewportScrollableArea;
|
| +
|
| + // This frame's bounds in the root frame's content coordinates, clipped
|
| + // recursively through every ancestor view.
|
| + IntRect m_clippedBounds;
|
| };
|
|
|
| inline void FrameView::incrementVisuallyNonEmptyCharacterCount(unsigned count)
|
|
|