Chromium Code Reviews| Index: content/public/common/resource_response_info.h |
| diff --git a/content/public/common/resource_response_info.h b/content/public/common/resource_response_info.h |
| index f5ff68eb830c61c561631ea99bf9dc9d9f1fa4d3..a1eb92d78cc02761692e10f0cc0bc53463550f0a 100644 |
| --- a/content/public/common/resource_response_info.h |
| +++ b/content/public/common/resource_response_info.h |
| @@ -18,6 +18,7 @@ |
| #include "net/base/load_timing_info.h" |
| #include "net/http/http_response_headers.h" |
| #include "net/http/http_response_info.h" |
| +#include "net/ssl/signed_certificate_timestamp_and_status.h" |
| #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerResponseType.h" |
| #include "url/gurl.h" |
| @@ -145,6 +146,10 @@ struct ResourceResponseInfo { |
| // Whether or not the request was for a LoFi version of the resource. |
| bool is_using_lofi; |
| + |
| + // List of Signed Certificate Timestamps (SCTs) and their corresponding |
| + // validation status. |
|
estark
2016/05/07 07:12:51
If you change this to only be set when |report_raw
dwaxweiler
2016/05/07 13:09:40
Acknowledged.
|
| + net::SignedCertificateTimestampAndStatusList signed_certificate_timestamps; |
| }; |
| } // namespace content |