OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ |
6 #define CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ | 6 #define CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
16 #include "content/public/common/resource_devtools_info.h" | 16 #include "content/public/common/resource_devtools_info.h" |
17 #include "net/base/host_port_pair.h" | 17 #include "net/base/host_port_pair.h" |
18 #include "net/base/load_timing_info.h" | 18 #include "net/base/load_timing_info.h" |
19 #include "net/http/http_response_headers.h" | 19 #include "net/http/http_response_headers.h" |
20 #include "net/http/http_response_info.h" | 20 #include "net/http/http_response_info.h" |
21 #include "net/nqe/network_quality_estimator.h" | 21 #include "net/nqe/network_quality_estimator.h" |
| 22 #include "net/ssl/signed_certificate_timestamp_and_status.h" |
22 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerResponseType.h" | 23 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerResponseType.h" |
23 #include "url/gurl.h" | 24 #include "url/gurl.h" |
24 | 25 |
25 namespace content { | 26 namespace content { |
26 | 27 |
27 // Note: when modifying this structure, also update ResourceResponse::DeepCopy | 28 // Note: when modifying this structure, also update ResourceResponse::DeepCopy |
28 // in resource_response.cc. | 29 // in resource_response.cc. |
29 struct ResourceResponseInfo { | 30 struct ResourceResponseInfo { |
30 CONTENT_EXPORT ResourceResponseInfo(); | 31 CONTENT_EXPORT ResourceResponseInfo(); |
31 CONTENT_EXPORT ResourceResponseInfo(const ResourceResponseInfo& other); | 32 CONTENT_EXPORT ResourceResponseInfo(const ResourceResponseInfo& other); |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 // the ServiceWorker. Empty if the response isn't from the CacheStorage. | 145 // the ServiceWorker. Empty if the response isn't from the CacheStorage. |
145 std::string cache_storage_cache_name; | 146 std::string cache_storage_cache_name; |
146 | 147 |
147 // Whether or not the request was for a LoFi version of the resource. | 148 // Whether or not the request was for a LoFi version of the resource. |
148 bool is_using_lofi; | 149 bool is_using_lofi; |
149 | 150 |
150 // Effective connection type when the resource was fetched. This is populated | 151 // Effective connection type when the resource was fetched. This is populated |
151 // only for responses that correspond to main frame requests. | 152 // only for responses that correspond to main frame requests. |
152 net::NetworkQualityEstimator::EffectiveConnectionType | 153 net::NetworkQualityEstimator::EffectiveConnectionType |
153 effective_connection_type; | 154 effective_connection_type; |
| 155 |
| 156 // List of Signed Certificate Timestamps (SCTs) and their corresponding |
| 157 // validation status. Only present if the renderer process set |
| 158 // report_raw_headers to true. |
| 159 net::SignedCertificateTimestampAndStatusList signed_certificate_timestamps; |
154 }; | 160 }; |
155 | 161 |
156 } // namespace content | 162 } // namespace content |
157 | 163 |
158 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ | 164 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ |
OLD | NEW |