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

Unified Diff: net/quic/quic_connection_logger.h

Issue 669793003: QUIC - Added histogram to track how often chrome sends/receives (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@disk_cache_rtt_fix
Patch Set: Count the number of BLOCKED frames recevied or sent. Created 6 years, 2 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 | net/quic/quic_connection_logger.cc » ('j') | tools/metrics/histograms/histograms.xml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_logger.h
diff --git a/net/quic/quic_connection_logger.h b/net/quic/quic_connection_logger.h
index c714e3bdec9807d686e838f61a7345edfbf2d91a..6f5a52335592364cbdc45e884b5b1062d1720933 100644
--- a/net/quic/quic_connection_logger.h
+++ b/net/quic/quic_connection_logger.h
@@ -156,6 +156,10 @@ class NET_EXPORT_PRIVATE QuicConnectionLogger
int num_undecryptable_packets_;
// Count of the number of duplicate packets received.
int num_duplicate_packets_;
+ // Count of the number of BLOCKED frames received.
+ uint32 num_blocked_frames_received_;
Ryan Hamilton 2014/10/22 15:51:26 nit: looks like you can just make these "int" to m
ramant (doing other things) 2014/10/22 16:54:46 Done.
+ // Count of the number of BLOCKED frames sent.
+ uint32 num_blocked_frames_sent_;
// Vector of inital packets status' indexed by packet sequence numbers, where
// false means never received. Zero is not a valid packet sequence number, so
// that offset is never used, and we'll track 150 packets.
« no previous file with comments | « no previous file | net/quic/quic_connection_logger.cc » ('j') | tools/metrics/histograms/histograms.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698