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

Unified Diff: net/quic/quic_session_test.cc

Issue 393953009: Moving the work currently done in the QuicSession constructor to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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_session_test.cc
diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc
index 9cb235d9fc2476fe95229faaccca760ae424a5c6..83f2447df80ff1697ae4437e48c3549e9dd726e0 100644
--- a/net/quic/quic_session_test.cc
+++ b/net/quic/quic_session_test.cc
@@ -125,7 +125,9 @@ class TestSession : public QuicSession {
: QuicSession(connection,
DefaultQuicConfig()),
crypto_stream_(this),
- writev_consumes_all_data_(false) {}
+ writev_consumes_all_data_(false) {
+ InitializeSession();
+ }
virtual TestCryptoStream* GetCryptoStream() OVERRIDE {
return &crypto_stream_;

Powered by Google App Engine
This is Rietveld 408576698