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

Unified Diff: content/public/common/resource_response.cc

Issue 686313002: Make the proxy server HostPortPair available in document_state so that (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/public/common/resource_response.cc
diff --git a/content/public/common/resource_response.cc b/content/public/common/resource_response.cc
index 793498121856c683953640ef117a58b494013696..92abfba8e3cf3d7fad0acc934dbb91833adcae18 100644
--- a/content/public/common/resource_response.cc
+++ b/content/public/common/resource_response.cc
@@ -34,6 +34,7 @@ scoped_refptr<ResourceResponse> ResourceResponse::DeepCopy() const {
new_response->head.was_alternate_protocol_available;
new_response->head.connection_info = head.connection_info;
new_response->head.was_fetched_via_proxy = head.was_fetched_via_proxy;
+ new_response->head.proxy_server = head.proxy_server;
new_response->head.npn_negotiated_protocol = head.npn_negotiated_protocol;
new_response->head.socket_address = head.socket_address;
new_response->head.was_fetched_via_service_worker =

Powered by Google App Engine
This is Rietveld 408576698