| Index: content/public/common/ssl_status.h
|
| diff --git a/content/public/common/ssl_status.h b/content/public/common/ssl_status.h
|
| index bd500647c169c60750fa5364dc1881139135c5ee..044b3e296e0a0fc7f96136bd3be5391a79497017 100644
|
| --- a/content/public/common/ssl_status.h
|
| +++ b/content/public/common/ssl_status.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_PUBLIC_COMMON_SSL_STATUS_H_
|
| #define CONTENT_PUBLIC_COMMON_SSL_STATUS_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| #include "content/common/content_export.h"
|
| @@ -51,7 +53,7 @@ struct CONTENT_EXPORT SSLStatus {
|
| return security_style == status.security_style &&
|
| cert_id == status.cert_id && cert_status == status.cert_status &&
|
| security_bits == status.security_bits &&
|
| - key_exchange_info == status.key_exchange_info &&
|
| + key_exchange_group == status.key_exchange_group &&
|
| connection_status == status.connection_status &&
|
| content_status == status.content_status &&
|
| sct_statuses == status.sct_statuses &&
|
| @@ -63,7 +65,7 @@ struct CONTENT_EXPORT SSLStatus {
|
| int cert_id;
|
| net::CertStatus cert_status;
|
| int security_bits;
|
| - int key_exchange_info;
|
| + uint16_t key_exchange_group;
|
| int connection_status;
|
| // A combination of the ContentStatusFlags above.
|
| int content_status;
|
|
|