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

Unified Diff: content/browser/loader/resource_loader.cc

Issue 2349713004: Replace key_exchange_info with key_exchange_group. (Closed)
Patch Set: rebase 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 | « no previous file | content/public/browser/ssl_status.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/loader/resource_loader.cc
diff --git a/content/browser/loader/resource_loader.cc b/content/browser/loader/resource_loader.cc
index 586f22247aeb33c99972112a74ff720050f10930..48222620c7dd46c48130aa1c54720d1e297b3116 100644
--- a/content/browser/loader/resource_loader.cc
+++ b/content/browser/loader/resource_loader.cc
@@ -107,7 +107,7 @@ void PopulateResourceResponse(ResourceRequestInfoImpl* info,
response->head.ssl_connection_status =
request->ssl_info().connection_status;
response->head.ssl_key_exchange_group =
- request->ssl_info().GetKeyExchangeGroup();
+ request->ssl_info().key_exchange_group;
response->head.signed_certificate_timestamps =
request->ssl_info().signed_certificate_timestamps;
std::string encoded;
@@ -126,7 +126,7 @@ void PopulateResourceResponse(ResourceRequestInfoImpl* info,
// We should not have any SSL state.
DCHECK(!request->ssl_info().cert_status);
DCHECK_EQ(request->ssl_info().security_bits, -1);
- DCHECK_EQ(request->ssl_info().key_exchange_info, 0);
+ DCHECK_EQ(request->ssl_info().key_exchange_group, 0);
DCHECK(!request->ssl_info().connection_status);
}
}
« no previous file with comments | « no previous file | content/public/browser/ssl_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698