| Index: net/quic/quic_connection_logger.cc
|
| diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc
|
| index 477cc7e21042ece2309f73163bb709d5a07f746c..3dd13e8973ec080d569df483b225236d6a9afa5a 100644
|
| --- a/net/quic/quic_connection_logger.cc
|
| +++ b/net/quic/quic_connection_logger.cc
|
| @@ -150,6 +150,10 @@ base::Value* NetLogQuicCongestionFeedbackFrameCallback(
|
| dict->SetString("type", "TCP");
|
| dict->SetInteger("receive_window", frame->tcp.receive_window);
|
| break;
|
| + case kTCPBBR:
|
| + dict->SetString("type", "TCPBBR");
|
| + // TODO(rtenneti): Add support for BBR.
|
| + break;
|
| }
|
|
|
| return dict;
|
|
|