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

Unified Diff: components/security_state/security_state_model.h

Issue 1727133002: Expose TLS settings in the Security panel overview, and call out individual obsolete settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Also check that connection_status is not zero, which is the case for 3 browser tests. 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: components/security_state/security_state_model.h
diff --git a/components/security_state/security_state_model.h b/components/security_state/security_state_model.h
index 4cbcce4a64984b92ab198af099a6549dcd99b07f..f45167160c899bdc8843c5c5b367077c88a821fa 100644
--- a/components/security_state/security_state_model.h
+++ b/components/security_state/security_state_model.h
@@ -114,9 +114,11 @@ class SecurityStateModel {
// Information about the SSL connection, such as protocol and
// ciphersuite. See ssl_connection_flags.h in net.
int connection_status;
- // True if the protocol version and ciphersuite for the connection
- // are considered secure.
- bool is_secure_protocol_and_ciphersuite;
+ // A mask that indicates which of the protocol version,
+ // key exchange, or cipher for the connection is considered
+ // obsolete. See net::ObsoleteSSLMask for specific mask values.
+ int obsolete_ssl_status;
+
// True if pinning was bypassed due to a local trust anchor.
bool pkp_bypassed;
};
« no previous file with comments | « chrome/browser/ui/website_settings/website_settings.cc ('k') | components/security_state/security_state_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698