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

Unified Diff: net/quic/quic_connection_logger.h

Issue 418723002: Log the certificate subjects from the server certificate sent via QUIC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 6 years, 5 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: net/quic/quic_connection_logger.h
diff --git a/net/quic/quic_connection_logger.h b/net/quic/quic_connection_logger.h
index 2110f9ef6d3bdcedf654dc375cd2341134b696ab..c58c4fe57f5527fd4524c00526bddd53716b9d4b 100644
--- a/net/quic/quic_connection_logger.h
+++ b/net/quic/quic_connection_logger.h
@@ -16,6 +16,7 @@
namespace net {
class CryptoHandshakeMessage;
+class X509Certificate;
// This class is a debug visitor of a QuicConnection which logs
// events to |net_log|.
@@ -71,6 +72,7 @@ class NET_EXPORT_PRIVATE QuicConnectionLogger
void UpdateReceivedFrameCounts(QuicStreamId stream_id,
int num_frames_received,
int num_duplicate_frames_received);
+ void OnCertificateVerified(scoped_refptr<X509Certificate> cert);
wtc 2014/07/24 16:59:53 This seems to result in two or three unnecessary r
Ryan Hamilton 2014/07/24 17:24:47 Done.
private:
// Do a factory get for a histogram for recording data, about individual

Powered by Google App Engine
This is Rietveld 408576698