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

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

Issue 1079163008: PlzNavigate: provide the FrameTreeNode ID to the network stack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-unittests
Patch Set: Addressed nasko's comments Created 5 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/navigation_request.cc
diff --git a/content/browser/frame_host/navigation_request.cc b/content/browser/frame_host/navigation_request.cc
index f46eecba30ff0f5b1d9a3d4f827d50c90949d76d..9e1b69f0f33f28556c34effb6baae7be2cf83ed0 100644
--- a/content/browser/frame_host/navigation_request.cc
+++ b/content/browser/frame_host/navigation_request.cc
@@ -152,8 +152,9 @@ NavigationRequest::NavigationRequest(
bool parent_is_main_frame = !frame_tree_node->parent() ?
false : frame_tree_node->parent()->IsMainFrame();
info_.reset(new NavigationRequestInfo(
- common_params, begin_params, first_party_for_cookies,
- frame_tree_node->IsMainFrame(), parent_is_main_frame, body));
+ common_params, begin_params, first_party_for_cookies,
+ frame_tree_node->IsMainFrame(), parent_is_main_frame,
+ frame_tree_node->frame_tree_node_id(), body));
}
NavigationRequest::~NavigationRequest() {

Powered by Google App Engine
This is Rietveld 408576698