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

Unified Diff: net/quic/quic_config_test.cc

Issue 446063005: Move Quic AppendTimestampFrame method out of AppendCongestionFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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') | net/quic/quic_connection_logger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_config_test.cc
diff --git a/net/quic/quic_config_test.cc b/net/quic/quic_config_test.cc
index 5241fed7e6f25269bd9a42cd24796c9e66b7aad1..9f3e27daecac8a210224b11c1b31b156b2532e41 100644
--- a/net/quic/quic_config_test.cc
+++ b/net/quic/quic_config_test.cc
@@ -91,7 +91,7 @@ TEST_F(QuicConfigTest, ToHandshakeMessageWithPacing) {
TEST_F(QuicConfigTest, ProcessClientHello) {
QuicConfig client_config;
QuicTagVector cgst;
- cgst.push_back(kINAR);
+ cgst.push_back(kTSTP);
cgst.push_back(kQBIC);
client_config.set_congestion_feedback(cgst, kQBIC);
client_config.set_idle_connection_state_lifetime(
@@ -261,7 +261,7 @@ TEST_F(QuicConfigTest, MultipleNegotiatedValuesInVectorTag) {
QuicConfig server_config;
QuicTagVector cgst;
cgst.push_back(kQBIC);
- cgst.push_back(kINAR);
+ cgst.push_back(kTSTP);
server_config.set_congestion_feedback(cgst, kQBIC);
CryptoHandshakeMessage msg;
@@ -276,8 +276,8 @@ TEST_F(QuicConfigTest, NoOverLapInCGST) {
QuicConfig server_config;
server_config.SetDefaults();
QuicTagVector cgst;
- cgst.push_back(kINAR);
- server_config.set_congestion_feedback(cgst, kINAR);
+ cgst.push_back(kTSTP);
+ server_config.set_congestion_feedback(cgst, kTSTP);
CryptoHandshakeMessage msg;
string error_details;
« no previous file with comments | « net/quic/crypto/crypto_protocol.h ('k') | net/quic/quic_connection_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698