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

Unified Diff: net/quic/quic_connection_logger.cc

Issue 1787443002: Remove lastest_revived_packet from QuicAckFrame since FEC is gone. No functional change expected. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@116391846
Patch Set: Removed revived packet from QuicConnectionLogger Created 4 years, 9 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_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_logger.cc
diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc
index bfc4c2f73e764b9b9384d2ace1e54daa1b737eed..52b54c3b1596b7b81df13992e4a3ef885120a546 100644
--- a/net/quic/quic_connection_logger.cc
+++ b/net/quic/quic_connection_logger.cc
@@ -123,9 +123,6 @@ scoped_ptr<base::Value> NetLogQuicAckFrameCallback(
for (QuicPacketNumber packet : frame->missing_packets)
missing->AppendString(base::Uint64ToString(packet));
- dict->SetString("latest_revived_packet",
- base::Int64ToString(frame->latest_revived_packet));
-
base::ListValue* received = new base::ListValue();
dict->Set("received_packet_times", received);
const PacketTimeVector& received_times = frame->received_packet_times;
« no previous file with comments | « no previous file | net/quic/quic_connection_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698