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

Unified Diff: third_party/WebKit/public/platform/WebURLResponse.h

Issue 2272603003: Route key_exchange_group over to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test maybe Created 4 years, 4 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: third_party/WebKit/public/platform/WebURLResponse.h
diff --git a/third_party/WebKit/public/platform/WebURLResponse.h b/third_party/WebKit/public/platform/WebURLResponse.h
index ca7f9960eb6e6a243fc5b7e5dbf6b497a5b13d00..a2f91e00062dc02b2f4033ac3cf3b93760e863a1 100644
--- a/third_party/WebKit/public/platform/WebURLResponse.h
+++ b/third_party/WebKit/public/platform/WebURLResponse.h
@@ -97,12 +97,14 @@ public:
struct WebSecurityDetails {
WebSecurityDetails(const WebString& protocol,
const WebString& keyExchange,
+ const WebString& keyExchangeGroup,
const WebString& cipher,
const WebString& mac,
int certId,
const SignedCertificateTimestampList& sctList)
: protocol(protocol)
, keyExchange(keyExchange)
+ , keyExchangeGroup(keyExchangeGroup)
, cipher(cipher)
, mac(mac)
, certId(certId)
@@ -112,6 +114,8 @@ public:
// All strings are human-readable values.
WebString protocol;
WebString keyExchange;
+ // keyExchangeGroup is the empty string if not applicable for the connection's key exchange.
+ WebString keyExchangeGroup;
WebString cipher;
// mac is the empty string when the connection cipher suite does not
// have a separate MAC value (i.e. if the cipher suite is AEAD).
« net/ssl/ssl_info.cc ('K') | « third_party/WebKit/Source/platform/network/ResourceResponse.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698