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 <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "content/public/common/resource_devtools_info.h" | 15 #include "content/public/common/resource_devtools_info.h" |
16 #include "net/base/host_port_pair.h" | 16 #include "net/base/host_port_pair.h" |
17 #include "net/base/load_timing_info.h" | 17 #include "net/base/load_timing_info.h" |
18 #include "net/http/http_response_headers.h" | 18 #include "net/http/http_response_headers.h" |
19 #include "net/http/http_response_info.h" | 19 #include "net/http/http_response_info.h" |
20 #include "third_party/WebKit/public/platform/WebServiceWorkerResponseType.h" | 20 #include "third_party/WebKit/public/platform/WebServiceWorkerResponseType.h" |
21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
22 | 22 |
23 namespace content { | 23 namespace content { |
24 | 24 |
| 25 // Note: when modifying this structure, also update ResourceResponse::DeepCopy |
| 26 // in resource_response.cc. |
25 struct ResourceResponseInfo { | 27 struct ResourceResponseInfo { |
26 CONTENT_EXPORT ResourceResponseInfo(); | 28 CONTENT_EXPORT ResourceResponseInfo(); |
27 CONTENT_EXPORT ~ResourceResponseInfo(); | 29 CONTENT_EXPORT ~ResourceResponseInfo(); |
28 | 30 |
29 // The time at which the request was made that resulted in this response. | 31 // The time at which the request was made that resulted in this response. |
30 // For cached responses, this time could be "far" in the past. | 32 // For cached responses, this time could be "far" in the past. |
31 base::Time request_time; | 33 base::Time request_time; |
32 | 34 |
33 // The time at which the response headers were received. For cached | 35 // The time at which the response headers were received. For cached |
34 // responses, this time could be "far" in the past. | 36 // responses, this time could be "far" in the past. |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 // ServiceWorker Timing Information. These will be set if the response is | 121 // ServiceWorker Timing Information. These will be set if the response is |
120 // provided by the ServiceWorker, or kept empty. | 122 // provided by the ServiceWorker, or kept empty. |
121 base::TimeTicks service_worker_fetch_start; | 123 base::TimeTicks service_worker_fetch_start; |
122 base::TimeTicks service_worker_fetch_ready; | 124 base::TimeTicks service_worker_fetch_ready; |
123 base::TimeTicks service_worker_fetch_end; | 125 base::TimeTicks service_worker_fetch_end; |
124 }; | 126 }; |
125 | 127 |
126 } // namespace content | 128 } // namespace content |
127 | 129 |
128 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ | 130 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ |
OLD | NEW |