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

Unified Diff: net/quic/quic_crypto_client_stream_test.cc

Issue 605163004: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0925
Patch Set: Created 6 years, 3 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/quic_connection_test.cc ('k') | net/quic/quic_data_stream_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_crypto_client_stream_test.cc
diff --git a/net/quic/quic_crypto_client_stream_test.cc b/net/quic/quic_crypto_client_stream_test.cc
index 147605d8e7ca28dbccc39a2070d5b53bdc92c614..203e27b7abb769bdaa1513cf33d47557023d44b8 100644
--- a/net/quic/quic_crypto_client_stream_test.cc
+++ b/net/quic/quic_crypto_client_stream_test.cc
@@ -93,12 +93,12 @@ TEST_F(QuicCryptoClientStreamTest, NegotiatedParameters) {
CompleteCryptoHandshake();
const QuicConfig* config = session_->config();
- EXPECT_EQ(kQBIC, config->congestion_feedback());
+ EXPECT_EQ(kQBIC, config->CongestionFeedback());
EXPECT_EQ(kMaximumIdleTimeoutSecs,
- config->idle_connection_state_lifetime().ToSeconds());
+ config->IdleConnectionStateLifetime().ToSeconds());
EXPECT_EQ(kDefaultMaxStreamsPerConnection,
- config->max_streams_per_connection());
- EXPECT_EQ(0, config->keepalive_timeout().ToSeconds());
+ config->MaxStreamsPerConnection());
+ EXPECT_EQ(0, config->KeepaliveTimeout().ToSeconds());
const QuicCryptoNegotiatedParameters& crypto_params(
stream_->crypto_negotiated_params());
« no previous file with comments | « net/quic/quic_connection_test.cc ('k') | net/quic/quic_data_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698