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

Unified Diff: net/quic/quic_utils_test.cc

Issue 1135253004: Remove the no longer used kPACE connection option. No functional change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename_local_variable_93431527
Patch Set: Created 5 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
« no previous file with comments | « net/quic/crypto/crypto_protocol.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_utils_test.cc
diff --git a/net/quic/quic_utils_test.cc b/net/quic/quic_utils_test.cc
index d741abb8f91c0874ffb02cf6fd4ef84cb021061a..1a3a1e58308bc5e836e6165ae5eb2b338bfaa215 100644
--- a/net/quic/quic_utils_test.cc
+++ b/net/quic/quic_utils_test.cc
@@ -88,10 +88,9 @@ TEST(QuicUtilsTest, ParseQuicConnectionOptions) {
QuicTagVector empty_options = QuicUtils::ParseQuicConnectionOptions("");
EXPECT_EQ(0ul, empty_options.size());
- QuicTagVector parsed_options = QuicUtils::ParseQuicConnectionOptions(
- "PACE,TIMER,TBBR,REJ");
+ QuicTagVector parsed_options =
+ QuicUtils::ParseQuicConnectionOptions("TIMER,TBBR,REJ");
QuicTagVector expected_options;
- expected_options.push_back(kPACE);
expected_options.push_back(kTIME);
expected_options.push_back(kTBBR);
expected_options.push_back(kREJ);
« no previous file with comments | « net/quic/crypto/crypto_protocol.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698