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

Unified Diff: third_party/WebKit/public/platform/WebURLResponse.h

Issue 1589703002: Surface SCT (Signed Certificate Timestamp) counts in the Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Only send the SCT counts. Created 4 years, 11 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: third_party/WebKit/public/platform/WebURLResponse.h
diff --git a/third_party/WebKit/public/platform/WebURLResponse.h b/third_party/WebKit/public/platform/WebURLResponse.h
index 3a64468b936169ac8efcda7da8d12b2f79a6b74f..3991bb557a5dac7a11e6542acdfeec6e79e942cd 100644
--- a/third_party/WebKit/public/platform/WebURLResponse.h
+++ b/third_party/WebKit/public/platform/WebURLResponse.h
@@ -151,7 +151,7 @@ public:
BLINK_PLATFORM_EXPORT SecurityStyle securityStyle() const;
BLINK_PLATFORM_EXPORT void setSecurityStyle(SecurityStyle);
- BLINK_PLATFORM_EXPORT void setSecurityDetails(const WebString& protocol, const WebString& keyExchange, const WebString& cipher, const WebString& mac, int certId);
+ BLINK_PLATFORM_EXPORT void setSecurityDetails(const WebString& protocol, const WebString& keyExchange, const WebString& cipher, const WebString& mac, int certId, size_t numUnknownScts, size_t numInvalidScts, size_t numValidScts);
pfeldman 2016/02/01 23:01:11 Introduce WebSecurityDetails struct?
lgarron 2016/02/02 03:17:08 Done.
#if INSIDE_BLINK
BLINK_PLATFORM_EXPORT ResourceResponse& toMutableResourceResponse();

Powered by Google App Engine
This is Rietveld 408576698