Chromium Code Reviews| Index: net/quic/congestion_control/send_algorithm_interface.cc |
| diff --git a/net/quic/congestion_control/send_algorithm_interface.cc b/net/quic/congestion_control/send_algorithm_interface.cc |
| index e5c33299825cab65d0b438790be2f6a9e5fb9693..58b92bce081b043b7354d49c9f246d895bd5b630 100644 |
| --- a/net/quic/congestion_control/send_algorithm_interface.cc |
| +++ b/net/quic/congestion_control/send_algorithm_interface.cc |
| @@ -29,6 +29,9 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create( |
| return NULL; |
| case kFixRate: |
| return new FixRateSender(rtt_stats); |
| + case kTCPBBR: |
| + LOG(DFATAL) << "BbrTcpSender is not supported."; |
| + return NULL; |
| } |
| return NULL; |
| } |