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

Unified Diff: content/common/resource_request.h

Issue 2776523005: Plumbing devtools agent host id and request id between processes (Closed)
Patch Set: Full plumbing Created 3 years, 9 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/common/resource_request.h
diff --git a/content/common/resource_request.h b/content/common/resource_request.h
index 2cf0ee50a2b55e40df279530b9d017fc397ee8d8..340fbb8b707f67ff44d5faf13ffcc9bd326cde6d 100644
--- a/content/common/resource_request.h
+++ b/content/common/resource_request.h
@@ -196,6 +196,12 @@ struct CONTENT_EXPORT ResourceRequest {
// The response should be downloaded and stored in the network cache, but not
// sent back to the renderer.
bool download_to_network_cache_only = false;
+
+ // The id of the associated DevToolsAgentHost, if any.
+ std::string devtools_agent_host_id;
+
+ // The DevTools request id, if any.
+ std::string devtools_request_id;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698