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 e93d8b06841c6c965b538bbf5502d82c5eebde96..efd751c950b577217e711e58e651f94d2d54bc08 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" |
| #include "net/cert/x509_cert_types.h" |
| namespace net { |
| @@ -66,6 +67,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; |
|
Ryan Sleevi
2016/07/18 20:08:08
NAMING: ocsp_status / ocsp_result ? Simply naming
dadrian
2016/07/18 22:23:32
Done. Switched to |ocsp_result|.
|
| }; |
| } // namespace net |