Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Side by Side Diff: content/public/common/resource_response_info.h

Issue 2206763005: Move signed_certificate_timestamp_and_status from net to cert (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/resource_messages.h ('k') | net/cert/signed_certificate_timestamp_and_status.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/cert/signed_certificate_timestamp_and_status.h"
19 #include "net/http/http_response_headers.h" 20 #include "net/http/http_response_headers.h"
20 #include "net/http/http_response_info.h" 21 #include "net/http/http_response_info.h"
21 #include "net/nqe/effective_connection_type.h" 22 #include "net/nqe/effective_connection_type.h"
22 #include "net/ssl/signed_certificate_timestamp_and_status.h"
23 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerResponseType.h" 23 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerResponseType.h"
24 #include "url/gurl.h" 24 #include "url/gurl.h"
25 25
26 namespace content { 26 namespace content {
27 27
28 // Note: when modifying this structure, also update ResourceResponse::DeepCopy 28 // Note: when modifying this structure, also update ResourceResponse::DeepCopy
29 // in resource_response.cc. 29 // in resource_response.cc.
30 struct CONTENT_EXPORT ResourceResponseInfo { 30 struct CONTENT_EXPORT ResourceResponseInfo {
31 ResourceResponseInfo(); 31 ResourceResponseInfo();
32 ResourceResponseInfo(const ResourceResponseInfo& other); 32 ResourceResponseInfo(const ResourceResponseInfo& other);
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 net::SignedCertificateTimestampAndStatusList signed_certificate_timestamps; 162 net::SignedCertificateTimestampAndStatusList signed_certificate_timestamps;
163 163
164 // In case this is a CORS response fetched by a ServiceWorker, this is the 164 // In case this is a CORS response fetched by a ServiceWorker, this is the
165 // set of headers that should be exposed. 165 // set of headers that should be exposed.
166 std::vector<std::string> cors_exposed_header_names; 166 std::vector<std::string> cors_exposed_header_names;
167 }; 167 };
168 168
169 } // namespace content 169 } // namespace content
170 170
171 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ 171 #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | net/cert/signed_certificate_timestamp_and_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698