Index: net/quic/test_tools/mock_crypto_client_stream_factory.cc |
diff --git a/net/quic/test_tools/mock_crypto_client_stream_factory.cc b/net/quic/test_tools/mock_crypto_client_stream_factory.cc |
index 83dac36928bb1467a20789e96655ea84f7ad9b18..302ed07e9aa682470cd0d5bbcfd0083ac08755db 100644 |
--- a/net/quic/test_tools/mock_crypto_client_stream_factory.cc |
+++ b/net/quic/test_tools/mock_crypto_client_stream_factory.cc |
@@ -7,7 +7,7 @@ |
#include "base/lazy_instance.h" |
#include "net/quic/quic_client_session.h" |
#include "net/quic/quic_crypto_client_stream.h" |
-#include "net/quic/quic_session_key.h" |
+#include "net/quic/quic_server_id.h" |
using std::string; |
@@ -21,11 +21,11 @@ MockCryptoClientStreamFactory::MockCryptoClientStreamFactory() |
QuicCryptoClientStream* |
MockCryptoClientStreamFactory::CreateQuicCryptoClientStream( |
- const QuicSessionKey& server_key, |
+ const QuicServerId& server_id, |
QuicClientSession* session, |
QuicCryptoClientConfig* crypto_config) { |
last_stream_ = new MockCryptoClientStream( |
- server_key, session, NULL, crypto_config, handshake_mode_, |
+ server_id, session, NULL, crypto_config, handshake_mode_, |
proof_verify_details_); |
return last_stream_; |
} |