Chromium Code Reviews| Index: net/cert/cert_verify_result.h |
| diff --git a/net/cert/cert_verify_result.h b/net/cert/cert_verify_result.h |
| index 47aae85887380019b207e6164bdb4f6b339f16b6..31df4398d5d37d4cb6c0513242b217db2c55d4a2 100644 |
| --- a/net/cert/cert_verify_result.h |
| +++ b/net/cert/cert_verify_result.h |
| @@ -10,6 +10,7 @@ |
| #include "base/memory/ref_counted.h" |
| #include "net/base/net_export.h" |
| #include "net/cert/cert_status_flags.h" |
| +#include "net/cert/ocsp_verify_result.h" |
|
svaldez
2016/06/29 14:41:22
Can you forward seclar OCSPVerifyResult?
dadrian
2016/06/30 21:52:43
Not without making it a pointer on line 70.
|
| #include "net/cert/x509_cert_types.h" |
| namespace net { |
| @@ -64,6 +65,9 @@ class NET_EXPORT CertVerifyResult { |
| // True if a fallback to the common name was used when matching the host |
| // name, rather than using the subjectAltName. |
| bool common_name_fallback_used; |
| + |
| + // Verification of stapled OCSP response, if present. |
| + OCSPVerifyResult ocsp; |
| }; |
| } // namespace net |