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

Unified Diff: chrome/browser/ui/website_settings/website_settings.cc

Issue 2294373002: Certificate Transparency: Remove the obsolete invalid sct status. (Closed)
Patch Set: Use uint32_t as enum base 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
Index: chrome/browser/ui/website_settings/website_settings.cc
diff --git a/chrome/browser/ui/website_settings/website_settings.cc b/chrome/browser/ui/website_settings/website_settings.cc
index 9bfe34309f3159c95355a36edbedbdd7bc370597..dde4f66a18f1a6bda46176bd51b976043d802bc5 100644
--- a/chrome/browser/ui/website_settings/website_settings.cc
+++ b/chrome/browser/ui/website_settings/website_settings.cc
@@ -197,9 +197,7 @@ int GetSiteIdentityDetailsMessageByCTInfo(
: IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_VERIFIED);
// Any invalid SCT.
- if (CertificateTransparencyStatusMatchAny(sct_verify_statuses,
- net::ct::SCT_STATUS_INVALID) ||
- CertificateTransparencyStatusMatchAny(
+ if (CertificateTransparencyStatusMatchAny(
sct_verify_statuses, net::ct::SCT_STATUS_INVALID_TIMESTAMP) ||
CertificateTransparencyStatusMatchAny(
sct_verify_statuses, net::ct::SCT_STATUS_INVALID_SIGNATURE))

Powered by Google App Engine
This is Rietveld 408576698