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

Unified Diff: content/child/web_url_loader_impl.cc

Issue 2208803002: Remove SCT counters from DevTools security panel (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/security/sct-summary.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/web_url_loader_impl.cc
diff --git a/content/child/web_url_loader_impl.cc b/content/child/web_url_loader_impl.cc
index cd0104333542bb72b0e91ff585fa65486a0d2de7..24e9015628194b6d2e2da9ccca66d1222ed60de1 100644
--- a/content/child/web_url_loader_impl.cc
+++ b/content/child/web_url_loader_impl.cc
@@ -278,10 +278,6 @@ void SetSecurityStyleAndDetails(const GURL& url,
response->setSecurityStyle(securityStyle);
- size_t num_unknown_scts = ssl_status.num_unknown_scts;
- size_t num_invalid_scts = ssl_status.num_invalid_scts;
- size_t num_valid_scts = ssl_status.num_valid_scts;
-
blink::WebURLResponse::SignedCertificateTimestampList sct_list(
info.signed_certificate_timestamps.size());
@@ -291,7 +287,7 @@ void SetSecurityStyleAndDetails(const GURL& url,
blink::WebURLResponse::WebSecurityDetails webSecurityDetails(
WebString::fromUTF8(protocol), WebString::fromUTF8(key_exchange),
WebString::fromUTF8(cipher), WebString::fromUTF8(mac), ssl_status.cert_id,
- num_unknown_scts, num_invalid_scts, num_valid_scts, sct_list);
+ sct_list);
response->setSecurityDetails(webSecurityDetails);
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/security/sct-summary.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698