Chromium Code Reviews| Index: net/ssl/ssl_info.h |
| diff --git a/net/ssl/ssl_info.h b/net/ssl/ssl_info.h |
| index fea5e21b834555b6ded5865f31f894417d94ade2..f37b9cc3e508cae03d7b9b219a59b5b569be1034 100644 |
| --- a/net/ssl/ssl_info.h |
| +++ b/net/ssl/ssl_info.h |
| @@ -85,6 +85,11 @@ class NET_EXPORT SSLInfo { |
| // List of SignedCertificateTimestamps and their corresponding validation |
| // status. |
| SignedCertificateTimestampAndStatusList signed_certificate_timestamps; |
| + |
| + // The SSL certificate as received by the client. Can be different |
| + // from |cert|, which is the chain as built by the client during |
| + // validation. |
| + scoped_refptr<X509Certificate> unverified_cert; |
|
Ryan Sleevi
2015/06/12 21:14:06
nit: Seems like this might be better up at line 45
estark
2015/06/12 21:20:41
Done.
|
| }; |
| } // namespace net |