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

Unified Diff: content/renderer/render_view_impl.cc

Issue 12243002: Pass WebKit priority changes and parsing messages up to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 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 | « content/renderer/render_view_impl.h ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index e15789b83bebe2dd3d37bff0fc2e20f58b640f08..06923e885d821968c084f5cdc109219990126d71 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -4475,6 +4475,12 @@ void RenderViewImpl::didLoseWebGLContext(
arb_robustness_status_code));
}
+void RenderViewImpl::willInsertBody(WebKit::WebFrame* frame) {
+ if (frame == webview()->mainFrame()) {
darin (slow to review) 2013/02/07 07:40:41 nit: !frame->parent() is a slightly more compact w
James Simonsen 2013/02/11 22:53:11 Done.
+ Send(new ViewHostMsg_DidParseBody(routing_id()));
darin (slow to review) 2013/02/07 07:40:41 Maybe the IPC message should also use the term "In
James Simonsen 2013/02/11 22:53:11 Done. Either name is accurate. There's a delay be
+ }
+}
+
// WebKit::WebPageSerializerClient implementation ------------------------------
void RenderViewImpl::didSerializeDataForFrame(
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698