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

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

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 | « third_party/WebKit/Source/platform/network/ResourceResponse.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 af75edc2a2f80c0159811dbf6883fb12dffe81ac..d44a28e1bc9605f3a68ff48eb1351f226567b1a8 100644
--- a/third_party/WebKit/public/platform/WebURLResponse.h
+++ b/third_party/WebKit/public/platform/WebURLResponse.h
@@ -100,18 +100,12 @@ public:
const WebString& cipher,
const WebString& mac,
int certId,
- size_t numUnknownScts,
- size_t numInvalidScts,
- size_t numValidScts,
const SignedCertificateTimestampList& sctList)
: protocol(protocol)
, keyExchange(keyExchange)
, cipher(cipher)
, mac(mac)
, certId(certId)
- , numUnknownScts(numUnknownScts)
- , numInvalidScts(numInvalidScts)
- , numValidScts(numValidScts)
, sctList(sctList)
{
}
@@ -123,9 +117,6 @@ public:
// have a separate MAC value (i.e. if the cipher suite is AEAD).
WebString mac;
int certId;
- size_t numUnknownScts;
- size_t numInvalidScts;
- size_t numValidScts;
SignedCertificateTimestampList sctList;
};
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceResponse.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698