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 "net/base/host_port_pair.h" | 16 #include "net/base/host_port_pair.h" |
16 #include "net/base/load_timing_info.h" | 17 #include "net/base/load_timing_info.h" |
17 #include "net/http/http_response_info.h" | 18 #include "net/http/http_response_info.h" |
18 #include "url/gurl.h" | 19 #include "url/gurl.h" |
19 #include "webkit/common/resource_devtools_info.h" | |
20 | 20 |
21 namespace content { | 21 namespace content { |
22 | 22 |
23 struct ResourceResponseInfo { | 23 struct ResourceResponseInfo { |
24 CONTENT_EXPORT ResourceResponseInfo(); | 24 CONTENT_EXPORT ResourceResponseInfo(); |
25 CONTENT_EXPORT ~ResourceResponseInfo(); | 25 CONTENT_EXPORT ~ResourceResponseInfo(); |
26 | 26 |
27 // The time at which the request was made that resulted in this response. | 27 // The time at which the request was made that resulted in this response. |
28 // For cached responses, this time could be "far" in the past. | 28 // For cached responses, this time could be "far" in the past. |
29 base::Time request_time; | 29 base::Time request_time; |
(...skipping 30 matching lines...) Expand all Loading... |
60 // Note: this value is only populated for main resource requests. | 60 // Note: this value is only populated for main resource requests. |
61 GURL appcache_manifest_url; | 61 GURL appcache_manifest_url; |
62 | 62 |
63 // Detailed timing information used by the WebTiming, HAR and Developer | 63 // Detailed timing information used by the WebTiming, HAR and Developer |
64 // Tools. Includes socket ID and socket reuse information. | 64 // Tools. Includes socket ID and socket reuse information. |
65 net::LoadTimingInfo load_timing; | 65 net::LoadTimingInfo load_timing; |
66 | 66 |
67 // Actual request and response headers, as obtained from the network stack. | 67 // Actual request and response headers, as obtained from the network stack. |
68 // Only present if request had LOAD_REPORT_RAW_HEADERS in load_flags, and | 68 // Only present if request had LOAD_REPORT_RAW_HEADERS in load_flags, and |
69 // requesting renderer had CanReadRowCookies permission. | 69 // requesting renderer had CanReadRowCookies permission. |
70 scoped_refptr<webkit_glue::ResourceDevToolsInfo> devtools_info; | 70 scoped_refptr<ResourceDevToolsInfo> devtools_info; |
71 | 71 |
72 // The path to a file that will contain the response body. It may only | 72 // The path to a file that will contain the response body. It may only |
73 // contain a portion of the response body at the time that the ResponseInfo | 73 // contain a portion of the response body at the time that the ResponseInfo |
74 // becomes available. | 74 // becomes available. |
75 base::FilePath download_file_path; | 75 base::FilePath download_file_path; |
76 | 76 |
77 // True if the response was delivered using SPDY. | 77 // True if the response was delivered using SPDY. |
78 bool was_fetched_via_spdy; | 78 bool was_fetched_via_spdy; |
79 | 79 |
80 // True if the response was delivered after NPN is negotiated. | 80 // True if the response was delivered after NPN is negotiated. |
(...skipping 14 matching lines...) Expand all Loading... |
95 // NPN protocol negotiated with the server. | 95 // NPN protocol negotiated with the server. |
96 std::string npn_negotiated_protocol; | 96 std::string npn_negotiated_protocol; |
97 | 97 |
98 // Remote address of the socket which fetched this resource. | 98 // Remote address of the socket which fetched this resource. |
99 net::HostPortPair socket_address; | 99 net::HostPortPair socket_address; |
100 }; | 100 }; |
101 | 101 |
102 } // namespace content | 102 } // namespace content |
103 | 103 |
104 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ | 104 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ |
OLD | NEW |