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

Unified Diff: content/public/common/ssl_status.h

Issue 2066483009: Expose SSLInfo::pkp_bypassed to devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove change to browser_protocol.json 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
« no previous file with comments | « content/public/browser/security_style_explanations.cc ('k') | content/public/common/ssl_status.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/ssl_status.h
diff --git a/content/public/common/ssl_status.h b/content/public/common/ssl_status.h
index c0d70c0a3dcb03c3a806a8ea1062a9837c0844f9..8233da77200cd9f2a926d7dc1be88c5856218f95 100644
--- a/content/public/common/ssl_status.h
+++ b/content/public/common/ssl_status.h
@@ -48,7 +48,8 @@ struct CONTENT_EXPORT SSLStatus {
content_status == status.content_status &&
num_unknown_scts == status.num_unknown_scts &&
num_invalid_scts == status.num_invalid_scts &&
- num_valid_scts == status.num_valid_scts;
+ num_valid_scts == status.num_valid_scts &&
+ pkp_bypassed == status.pkp_bypassed;
}
content::SecurityStyle security_style;
@@ -64,6 +65,8 @@ struct CONTENT_EXPORT SSLStatus {
uint32_t num_unknown_scts;
uint32_t num_invalid_scts;
uint32_t num_valid_scts;
+ // True if PKP was bypassed due to a local trust anchor.
+ bool pkp_bypassed;
};
} // namespace content
« no previous file with comments | « content/public/browser/security_style_explanations.cc ('k') | content/public/common/ssl_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698