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

Unified Diff: net/ssl/ssl_info.cc

Issue 2100303002: Add OCSPVerifyResult for tracking stapled OCSP responses cross-platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ocsp-date-check
Patch Set: Remaining nits. Created 4 years, 5 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 | « net/ssl/ssl_info.h ('k') | net/test/spawned_test_server/base_test_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/ssl_info.cc
diff --git a/net/ssl/ssl_info.cc b/net/ssl/ssl_info.cc
index 28e232733b1d1cd76cfe9aa927f8c039708b373f..ce7c949a0d2ce281b50bb144e2266cda5b4c7dd7 100644
--- a/net/ssl/ssl_info.cc
+++ b/net/ssl/ssl_info.cc
@@ -43,7 +43,7 @@ SSLInfo& SSLInfo::operator=(const SSLInfo& info) {
ct_compliance_details_available = info.ct_compliance_details_available;
ct_ev_policy_compliance = info.ct_ev_policy_compliance;
ct_cert_policy_compliance = info.ct_cert_policy_compliance;
-
+ ocsp_result = info.ocsp_result;
return *this;
}
@@ -68,6 +68,7 @@ void SSLInfo::Reset() {
ct_ev_policy_compliance = ct::EVPolicyCompliance::EV_POLICY_DOES_NOT_APPLY;
ct_cert_policy_compliance =
ct::CertPolicyCompliance::CERT_POLICY_COMPLIES_VIA_SCTS;
+ ocsp_result = OCSPVerifyResult();
}
void SSLInfo::SetCertError(int error) {
« no previous file with comments | « net/ssl/ssl_info.h ('k') | net/test/spawned_test_server/base_test_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698