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

Unified Diff: net/quic/quic_http_stream_test.cc

Issue 12545035: Refactor QuicClientSession so that it owns the underlying socket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/quic/quic_http_stream_test.cc
diff --git a/net/quic/quic_http_stream_test.cc b/net/quic/quic_http_stream_test.cc
index e0bfee7958a58ed4bba331b4524c7f03f822c7bf..ca23fd623e26306a1e66ba1d55694f4df9ae4cb3 100644
--- a/net/quic/quic_http_stream_test.cc
+++ b/net/quic/quic_http_stream_test.cc
@@ -176,7 +176,7 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<bool> {
connection_->set_visitor(&visitor_);
connection_->SetSendAlgorithm(send_algorithm_);
connection_->SetReceiveAlgorithm(receive_algorithm_);
- session_.reset(new QuicClientSession(connection_, helper_, NULL,
+ session_.reset(new QuicClientSession(connection_, socket, NULL,
"www.google.com", NULL));
CryptoHandshakeMessage message =
CreateShloMessage(&clock_, &random_generator_, "www.google.com");

Powered by Google App Engine
This is Rietveld 408576698