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

Unified Diff: net/quic/quic_client_session_test.cc

Issue 115463002: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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_client_session.cc ('k') | net/quic/quic_config_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_client_session_test.cc
diff --git a/net/quic/quic_client_session_test.cc b/net/quic/quic_client_session_test.cc
index f18f71b48601e4d0c8ced919df692361fcf25d28..f0b4dd4ecab669654fe4df4a3743b248124f5d94 100644
--- a/net/quic/quic_client_session_test.cc
+++ b/net/quic/quic_client_session_test.cc
@@ -64,9 +64,8 @@ class TestPacketWriter : public QuicDefaultPacketWriter {
class QuicClientSessionTest : public ::testing::Test {
protected:
QuicClientSessionTest()
- : guid_(1),
- writer_(new TestPacketWriter()),
- connection_(new PacketSavingConnection(guid_, IPEndPoint(), false)),
+ : writer_(new TestPacketWriter()),
+ connection_(new PacketSavingConnection(false)),
session_(connection_, GetSocket().Pass(), writer_.Pass(), NULL, NULL,
kServerHostname, DefaultQuicConfig(), &crypto_config_,
&net_log_) {
@@ -93,7 +92,6 @@ class QuicClientSessionTest : public ::testing::Test {
ASSERT_EQ(OK, callback_.WaitForResult());
}
- QuicGuid guid_;
scoped_ptr<QuicDefaultPacketWriter> writer_;
PacketSavingConnection* connection_;
CapturingNetLog net_log_;
« no previous file with comments | « net/quic/quic_client_session.cc ('k') | net/quic/quic_config_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698