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

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

Issue 1772603002: Addition of Certificate Transparency details to Security panel of DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed SignedCertificateTimestampStore and SignedCertificateTimestampIDStatus(List) Created 4 years, 9 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 340407ecc5951b2b42eab70267972312e5223eec..9af2387e1af0ab24308d6cf95603da9ba223d82e 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"
@@ -137,6 +138,10 @@ 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.
+ net::SignedCertificateTimestampAndStatusList signed_certificate_timestamps;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698