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.cc

Issue 2776523005: Plumbing devtools agent host id and request id between processes (Closed)
Patch Set: Rebased 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
« no previous file with comments | « content/browser/frame_host/navigation_request_info.h ('k') | content/browser/loader/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/navigation_request_info.cc
diff --git a/content/browser/frame_host/navigation_request_info.cc b/content/browser/frame_host/navigation_request_info.cc
index 65d0007a71eb270d7e4079b6f8f2b041a9e2a0d3..8f1846adf219d8ce07a35fec1780b930e37f0f87 100644
--- a/content/browser/frame_host/navigation_request_info.cc
+++ b/content/browser/frame_host/navigation_request_info.cc
@@ -17,7 +17,9 @@ NavigationRequestInfo::NavigationRequestInfo(
int frame_tree_node_id,
bool is_for_guests_only,
bool report_raw_headers,
- blink::WebPageVisibilityState page_visibility_state)
+ blink::WebPageVisibilityState page_visibility_state,
+ const std::string& devtools_agent_host_id,
+ int devtools_request_id)
: common_params(common_params),
begin_params(begin_params),
first_party_for_cookies(first_party_for_cookies),
@@ -27,7 +29,9 @@ NavigationRequestInfo::NavigationRequestInfo(
frame_tree_node_id(frame_tree_node_id),
is_for_guests_only(is_for_guests_only),
report_raw_headers(report_raw_headers),
- page_visibility_state(page_visibility_state) {}
+ page_visibility_state(page_visibility_state),
+ devtools_agent_host_id(devtools_agent_host_id),
+ devtools_request_id(devtools_request_id) {}
NavigationRequestInfo::~NavigationRequestInfo() {}
« no previous file with comments | « content/browser/frame_host/navigation_request_info.h ('k') | content/browser/loader/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698