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

Unified Diff: net/quic/congestion_control/send_algorithm_interface.cc

Issue 288313003: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src
Patch Set: implemented rch's comments Created 6 years, 7 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
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.";
wtc 2014/05/19 18:58:40 Nit: Is the class named BbrTcpSender or TcpBbrSend
ramant (doing other things) 2014/05/20 03:22:32 It is called BbrTcpSender (internally). Ian: Shou
+ return NULL;
}
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698