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

Unified Diff: net/quic/quic_crypto_server_stream_test.cc

Issue 1190823003: Remove dependency on headers stream from QuicSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0616
Patch Set: deleted an include Created 5 years, 6 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_crypto_client_stream_test.cc ('k') | net/quic/quic_crypto_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_server_stream_test.cc
diff --git a/net/quic/quic_crypto_server_stream_test.cc b/net/quic/quic_crypto_server_stream_test.cc
index f47c03bbe9cfd327aeee09d238b8d41807071ce5..aa3828bbf673b1bd605a8c99e9c393ef3fb7898c 100644
--- a/net/quic/quic_crypto_server_stream_test.cc
+++ b/net/quic/quic_crypto_server_stream_test.cc
@@ -95,7 +95,7 @@ class QuicCryptoServerStreamTest : public ::testing::TestWithParam<bool> {
// Initializes the crypto server stream state for testing. May be
// called multiple times.
void InitializeServer() {
- TestServerSession* server_session = nullptr;
+ TestQuicSpdyServerSession* server_session = nullptr;
CreateServerSessionForTest(server_id_, QuicTime::Delta::FromSeconds(100000),
&server_crypto_config_, &server_connection_,
&server_session);
@@ -117,7 +117,7 @@ class QuicCryptoServerStreamTest : public ::testing::TestWithParam<bool> {
// Initializes a fake client, and all its associated state, for
// testing. May be called multiple times.
void InitializeFakeClient(bool supports_stateless_rejects) {
- TestClientSession* client_session = nullptr;
+ TestQuicSpdyClientSession* client_session = nullptr;
CreateClientSessionForTest(server_id_, supports_stateless_rejects,
QuicTime::Delta::FromSeconds(100000),
&client_crypto_config_, &client_connection_,
@@ -157,14 +157,14 @@ class QuicCryptoServerStreamTest : public ::testing::TestWithParam<bool> {
protected:
// Server state
PacketSavingConnection* server_connection_;
- scoped_ptr<TestServerSession> server_session_;
+ scoped_ptr<TestQuicSpdyServerSession> server_session_;
QuicCryptoServerConfig server_crypto_config_;
QuicServerId server_id_;
// Client state
PacketSavingConnection* client_connection_;
QuicCryptoClientConfig client_crypto_config_;
- scoped_ptr<TestClientSession> client_session_;
+ scoped_ptr<TestQuicSpdyClientSession> client_session_;
CryptoHandshakeMessage message_;
scoped_ptr<QuicData> message_data_;
« no previous file with comments | « net/quic/quic_crypto_client_stream_test.cc ('k') | net/quic/quic_crypto_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698