Chromium Code Reviews| Index: content/public/common/ssl_status.h |
| diff --git a/content/public/common/ssl_status.h b/content/public/common/ssl_status.h |
| index 6e23eb7dd7594b5c0d61b376bc9e75f176345973..cf8048018b4f054dc1ebf8a611ada4402ccf4bfe 100644 |
| --- a/content/public/common/ssl_status.h |
| +++ b/content/public/common/ssl_status.h |
| @@ -37,6 +37,7 @@ struct CONTENT_EXPORT SSLStatus { |
| cert_id == status.cert_id && |
| cert_status == status.cert_status && |
| security_bits == status.security_bits && |
| + key_exchange_info == status.key_exchange_info && |
| content_status == status.content_status && |
| signed_certificate_timestamp_ids == |
| status.signed_certificate_timestamp_ids; |
| @@ -46,6 +47,7 @@ struct CONTENT_EXPORT SSLStatus { |
| int cert_id; |
| net::CertStatus cert_status; |
| int security_bits; |
| + int key_exchange_info; |
|
Ryan Sleevi
2015/09/08 22:19:49
BUG: You forgot to initialize this member in the c
sigbjorn
2015/09/09 08:17:17
Done.
|
| int connection_status; |
| // A combination of the ContentStatusFlags above. |
| int content_status; |