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

Unified Diff: content/browser/frame_host/navigation_request_info.h

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: Now using FTN id or routing ID 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_info.h
diff --git a/content/browser/frame_host/navigation_request_info.h b/content/browser/frame_host/navigation_request_info.h
index 2721c3d73ad539ee9b6afb1263abf8d426d943ae..f308e02cdfa93dcd225edd9037ca458f6b7bda31 100644
--- a/content/browser/frame_host/navigation_request_info.h
+++ b/content/browser/frame_host/navigation_request_info.h
@@ -27,6 +27,7 @@ struct CONTENT_EXPORT NavigationRequestInfo {
const GURL& first_party_for_cookies,
bool is_main_frame,
bool parent_is_main_frame,
+ int64 frame_tree_node_id,
scoped_refptr<ResourceRequestBody> request_body);
~NavigationRequestInfo();
@@ -40,6 +41,8 @@ struct CONTENT_EXPORT NavigationRequestInfo {
const bool is_main_frame;
const bool parent_is_main_frame;
+ const int64 frame_tree_node_id;
+
scoped_refptr<ResourceRequestBody> request_body;
};

Powered by Google App Engine
This is Rietveld 408576698