Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(980)

Unified Diff: Source/core/frame/FrameView.cpp

Issue 892693006: Revert of DevTools: use per-LocalFrame instrumenting agents instead of per-Page ones. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/frame/FrameHost.cpp ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index a37325b161e2459a70afe0803b4ad6ee2374dfa8..dda84dcdc21bd0389a4f33c9a5f012d2a2804e6e 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -1362,7 +1362,7 @@
return false;
if (!m_viewportConstrainedObjects || m_viewportConstrainedObjects->isEmpty()) {
- InspectorInstrumentation::didScroll(m_frame.get());
+ InspectorInstrumentation::didScroll(page());
return true;
}
@@ -1386,7 +1386,7 @@
setShouldDoFullPaintInvalidationIncludingNonCompositingDescendants(layer);
}
- InspectorInstrumentation::didScroll(m_frame.get());
+ InspectorInstrumentation::didScroll(page());
return true;
}
@@ -2150,7 +2150,7 @@
m_frame->document()->enqueueResizeEvent();
if (m_frame->isMainFrame())
- InspectorInstrumentation::didResizeMainFrame(m_frame.get());
+ InspectorInstrumentation::didResizeMainFrame(m_frame->page());
}
void FrameView::postLayoutTimerFired(Timer<FrameView>*)
« no previous file with comments | « Source/core/frame/FrameHost.cpp ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698