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

Unified Diff: net/quic/core/congestion_control/send_algorithm_test.cc

Issue 2875333002: Landing Recent QUIC changes until Mon May 8 21:42:46 2017 +0000 (Closed)
Patch Set: Created 3 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/core/congestion_control/send_algorithm_test.cc
diff --git a/net/quic/core/congestion_control/send_algorithm_test.cc b/net/quic/core/congestion_control/send_algorithm_test.cc
index e89fb0551dd3f5912da4adaf19094a8978be16c2..134b2de9c51eae5b8ef6e8bb77efc779b4fbf0bb 100644
--- a/net/quic/core/congestion_control/send_algorithm_test.cc
+++ b/net/quic/core/congestion_control/send_algorithm_test.cc
@@ -114,6 +114,8 @@ const char* CongestionControlTypeToString(CongestionControlType cc_type) {
return "RENO_BYTES";
case kBBR:
return "BBR";
+ case kPCC:
+ return "PCC";
default:
QUIC_DLOG(FATAL) << "Unexpected CongestionControlType";
return nullptr;
@@ -163,7 +165,7 @@ string TestParamToString(const testing::TestParamInfo<TestParams>& params) {
std::vector<TestParams> GetTestParams() {
std::vector<TestParams> params;
for (const CongestionControlType congestion_control_type :
- {kBBR, kCubic, kCubicBytes, kReno, kRenoBytes}) {
+ {kBBR, kCubic, kCubicBytes, kReno, kRenoBytes, kPCC}) {
if (congestion_control_type != kCubic &&
congestion_control_type != kCubicBytes) {
params.push_back(
« no previous file with comments | « net/quic/core/congestion_control/send_algorithm_interface.cc ('k') | net/quic/core/crypto/crypto_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698