| Index: Source/core/frame/FrameView.cpp
|
| diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
|
| index dda84dcdc21bd0389a4f33c9a5f012d2a2804e6e..a37325b161e2459a70afe0803b4ad6ee2374dfa8 100644
|
| --- a/Source/core/frame/FrameView.cpp
|
| +++ b/Source/core/frame/FrameView.cpp
|
| @@ -1362,7 +1362,7 @@ bool FrameView::scrollContentsFastPath(const IntSize& scrollDelta)
|
| return false;
|
|
|
| if (!m_viewportConstrainedObjects || m_viewportConstrainedObjects->isEmpty()) {
|
| - InspectorInstrumentation::didScroll(page());
|
| + InspectorInstrumentation::didScroll(m_frame.get());
|
| return true;
|
| }
|
|
|
| @@ -1386,7 +1386,7 @@ bool FrameView::scrollContentsFastPath(const IntSize& scrollDelta)
|
| setShouldDoFullPaintInvalidationIncludingNonCompositingDescendants(layer);
|
| }
|
|
|
| - InspectorInstrumentation::didScroll(page());
|
| + InspectorInstrumentation::didScroll(m_frame.get());
|
| return true;
|
| }
|
|
|
| @@ -2150,7 +2150,7 @@ void FrameView::sendResizeEventIfNeeded()
|
| m_frame->document()->enqueueResizeEvent();
|
|
|
| if (m_frame->isMainFrame())
|
| - InspectorInstrumentation::didResizeMainFrame(m_frame->page());
|
| + InspectorInstrumentation::didResizeMainFrame(m_frame.get());
|
| }
|
|
|
| void FrameView::postLayoutTimerFired(Timer<FrameView>*)
|
|
|