Chromium Code Reviews| Index: net/ssl/ssl_info.h |
| diff --git a/net/ssl/ssl_info.h b/net/ssl/ssl_info.h |
| index 154c4a0e901bbfd8b60e73b99e35e6297c8f8e96..43ae22c3d0c290a3be777d6d9ce417694768a8c4 100644 |
| --- a/net/ssl/ssl_info.h |
| +++ b/net/ssl/ssl_info.h |
| @@ -48,6 +48,10 @@ class NET_EXPORT SSLInfo { |
| // The SSL certificate. |
| scoped_refptr<X509Certificate> cert; |
| + // The SSL certificate with unverified certificate chain as sent by |
| + // the server. |
| + scoped_refptr<X509Certificate> unverified_server_cert; |
|
Ryan Sleevi
2015/02/25 23:15:41
the _server_ seems redundant here.
Ryan Sleevi
2015/02/25 23:15:41
There's a problem here, which is that HttpResponse
|
| + |
| // Bitmask of status info of |cert|, representing, for example, known errors |
| // and extended validation (EV) status. |
| // See cert_status_flags.h for values. |