Index: net/quic/quic_connection_logger.cc |
diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc |
index b313ae65b86f5aa3b151e59d3f615bcfc6875567..8157848fff62ff06eba358da203057cf82aa70b8 100644 |
--- a/net/quic/quic_connection_logger.cc |
+++ b/net/quic/quic_connection_logger.cc |
@@ -122,19 +122,6 @@ base::Value* NetLogQuicCongestionFeedbackFrameCallback( |
NetLog::LogLevel /* log_level */) { |
base::DictionaryValue* dict = new base::DictionaryValue(); |
switch (frame->type) { |
- case kTimestamp: { |
- dict->SetString("type", "Timestamp"); |
- base::ListValue* received = new base::ListValue(); |
- dict->Set("received_packets", received); |
- for (TimeMap::const_iterator it = |
- frame->timestamp.received_packet_times.begin(); |
- it != frame->timestamp.received_packet_times.end(); ++it) { |
- string value = base::Uint64ToString(it->first) + "@" + |
- base::Uint64ToString(it->second.ToDebuggingValue()); |
- received->AppendString(value); |
- } |
- break; |
- } |
case kTCP: |
dict->SetString("type", "TCP"); |
dict->SetInteger("receive_window", frame->tcp.receive_window); |