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

Unified Diff: net/ssl/ssl_info.cc

Issue 2016143002: Expose when PKP is bypassed in SSLInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make CertVerifyResult Great Again. Created 4 years, 6 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: net/ssl/ssl_info.cc
diff --git a/net/ssl/ssl_info.cc b/net/ssl/ssl_info.cc
index c6bc04137fd97191569351c7191b11a82c2cbd3c..28e232733b1d1cd76cfe9aa927f8c039708b373f 100644
--- a/net/ssl/ssl_info.cc
+++ b/net/ssl/ssl_info.cc
@@ -31,6 +31,7 @@ SSLInfo& SSLInfo::operator=(const SSLInfo& info) {
key_exchange_info = info.key_exchange_info;
connection_status = info.connection_status;
is_issued_by_known_root = info.is_issued_by_known_root;
+ pkp_bypassed = info.pkp_bypassed;
client_cert_sent = info.client_cert_sent;
channel_id_sent = info.channel_id_sent;
token_binding_negotiated = info.token_binding_negotiated;
@@ -54,6 +55,7 @@ void SSLInfo::Reset() {
key_exchange_info = 0;
connection_status = 0;
is_issued_by_known_root = false;
+ pkp_bypassed = false;
client_cert_sent = false;
channel_id_sent = false;
token_binding_negotiated = false;

Powered by Google App Engine
This is Rietveld 408576698