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

Unified Diff: net/tools/quic/quic_spdy_client_stream_test.cc

Issue 218923002: Merge internal change: 63891842 - QuicServerId changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/tools/quic/quic_spdy_client_stream_test.cc
diff --git a/net/tools/quic/quic_spdy_client_stream_test.cc b/net/tools/quic/quic_spdy_client_stream_test.cc
index 004ac8bf6b3a0f3df6b07d7adb05b519e8b87cad..e79c85060ef5a89aba53d68707046cd4efc102f4 100644
--- a/net/tools/quic/quic_spdy_client_stream_test.cc
+++ b/net/tools/quic/quic_spdy_client_stream_test.cc
@@ -30,9 +30,10 @@ class QuicSpdyClientStreamTest : public TestWithParam<QuicVersion> {
QuicSpdyClientStreamTest()
: connection_(new StrictMock<MockConnection>(
false, SupportedVersions(GetParam()))),
- session_(QuicSessionKey("example.com", 80, false, kPrivacyModeDisabled),
+ session_(QuicServerId("example.com", 80, false, kPrivacyModeDisabled),
DefaultQuicConfig(),
- connection_, &crypto_config_),
+ connection_,
+ &crypto_config_),
body_("hello world") {
crypto_config_.SetDefaults();

Powered by Google App Engine
This is Rietveld 408576698