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

Unified Diff: content/browser/frame_host/navigator_impl.cc

Issue 2813243002: network service: pass PlzNavigate resulting data via mojo data pipe (Closed)
Patch Set: ahem Created 3 years, 8 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
Index: content/browser/frame_host/navigator_impl.cc
diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc
index d84e2911945758afaea971eb17377bb6b5d21f83..6dd1df2f0ba63c8894c9cae86614b5db9042a0da 100644
--- a/content/browser/frame_host/navigator_impl.cc
+++ b/content/browser/frame_host/navigator_impl.cc
@@ -1160,11 +1160,11 @@ void NavigatorImpl::RequestNavigation(FrameTreeNode* frame_tree_node,
RenderFrameHostImpl* render_frame_host =
frame_tree_node->render_manager()->GetFrameHostForNavigation(
*scoped_request.get());
- render_frame_host->CommitNavigation(nullptr, // response
- nullptr, // body
- scoped_request->common_params(),
- scoped_request->request_params(),
- scoped_request->is_view_source());
+ render_frame_host->CommitNavigation(
+ nullptr, // response
+ nullptr, // body
+ mojo::ScopedDataPipeConsumerHandle(), scoped_request->common_params(),
+ scoped_request->request_params(), scoped_request->is_view_source());
return;
}
« no previous file with comments | « content/browser/frame_host/navigation_request.cc ('k') | content/browser/frame_host/render_frame_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698