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

Unified Diff: net/ssl/ssl_info.h

Issue 2040513003: Implement Expect-Staple (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move OCSP into cert_verify_proc 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.h
diff --git a/net/ssl/ssl_info.h b/net/ssl/ssl_info.h
index d894f7c6b606bc8d891bc967dc4f68d74a9884ef..ccb2b691cc212c35ccf4faa219a8afa4d785c82b 100644
--- a/net/ssl/ssl_info.h
+++ b/net/ssl/ssl_info.h
@@ -11,6 +11,7 @@
#include "net/base/net_export.h"
#include "net/cert/cert_status_flags.h"
#include "net/cert/ct_verify_result.h"
+#include "net/cert/ocsp_verify_result.h"
#include "net/cert/sct_status_flags.h"
#include "net/cert/x509_cert_types.h"
#include "net/ssl/signed_certificate_timestamp_and_status.h"
@@ -144,6 +145,9 @@ class NET_EXPORT SSLInfo {
// not, why not. Only meaningful it |ct_compliance_details_available|
// is true.
ct::CertPolicyCompliance ct_cert_policy_compliance;
+
+ // OCSP stapling details.
+ OCSPVerifyResult ocsp;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698