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

Unified Diff: content/public/common/resource_response_info.h

Issue 1957483003: Removal of SignedCertificateTimestampStore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reacted to comments of estark Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
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..6d515e15946558226befd3198e79e352f329c25d 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,11 @@ 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. Only present if the renderer set report_raw_headers to
nasko 2016/05/09 22:51:18 nit: s/renderer/renderer process/
dwaxweiler 2016/05/11 06:40:35 I have not understood this comment. Could you elab
nasko 2016/05/11 16:46:28 s/a/b/ is the standard Unix replacement expression
dwaxweiler 2016/05/12 07:28:16 Acknowledged.
+ // true.
+ net::SignedCertificateTimestampAndStatusList signed_certificate_timestamps;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698