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

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

Issue 2347163002: s/NPN/ALPN/ (Closed)
Patch Set: Re: #12. Created 4 years, 3 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/common/resource_messages.h ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/resource_response.cc
diff --git a/content/public/common/resource_response.cc b/content/public/common/resource_response.cc
index d38804ac1b06d46429c672d8a96577f03b286021..070e9d1266aa04440c601704513dfa38d9423b67 100644
--- a/content/public/common/resource_response.cc
+++ b/content/public/common/resource_response.cc
@@ -31,13 +31,13 @@ scoped_refptr<ResourceResponse> ResourceResponse::DeepCopy() const {
}
new_response->head.download_file_path = head.download_file_path;
new_response->head.was_fetched_via_spdy = head.was_fetched_via_spdy;
- new_response->head.was_npn_negotiated = head.was_npn_negotiated;
+ new_response->head.was_alpn_negotiated = head.was_alpn_negotiated;
new_response->head.was_alternate_protocol_available =
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.alpn_negotiated_protocol = head.alpn_negotiated_protocol;
new_response->head.socket_address = head.socket_address;
new_response->head.was_fetched_via_service_worker =
head.was_fetched_via_service_worker;
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698