| Index: net/quic/quic_crypto_client_stream_factory.h
|
| diff --git a/net/quic/quic_crypto_client_stream_factory.h b/net/quic/quic_crypto_client_stream_factory.h
|
| index 4fa5f573ea0b21b1216c5fc61800c3c7ae460c96..4c5746a88f7af939b98fbc3d4a981a53e15c7621 100644
|
| --- a/net/quic/quic_crypto_client_stream_factory.h
|
| +++ b/net/quic/quic_crypto_client_stream_factory.h
|
| @@ -13,6 +13,7 @@ namespace net {
|
|
|
| class QuicCryptoClientStream;
|
| class QuicSession;
|
| +class QuicSessionKey;
|
|
|
| // An interface used to instantiate QuicCryptoClientStream objects. Used to
|
| // facilitate testing code with mock implementations.
|
| @@ -21,7 +22,7 @@ class NET_EXPORT QuicCryptoClientStreamFactory {
|
| virtual ~QuicCryptoClientStreamFactory() {}
|
|
|
| virtual QuicCryptoClientStream* CreateQuicCryptoClientStream(
|
| - const string& server_hostname,
|
| + const QuicSessionKey& session_key,
|
| QuicSession* session,
|
| QuicCryptoClientConfig* crypto_config) = 0;
|
| };
|
|
|