Index: net/quic/quic_client_session.cc |
diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc |
index 3ec2c89adfe049e773ee539dc53ff9dd221893c3..2e391795e2ca7bb1f85cc3fc6c789da509ec90ad 100644 |
--- a/net/quic/quic_client_session.cc |
+++ b/net/quic/quic_client_session.cc |
@@ -87,6 +87,7 @@ QuicClientSession::QuicClientSession( |
QuicStreamFactory* stream_factory, |
QuicCryptoClientStreamFactory* crypto_client_stream_factory, |
const string& server_hostname, |
+ uint16 server_port, |
const QuicConfig& config, |
QuicCryptoClientConfig* crypto_config, |
NetLog* net_log) |
@@ -105,8 +106,9 @@ QuicClientSession::QuicClientSession( |
crypto_stream_.reset( |
crypto_client_stream_factory ? |
crypto_client_stream_factory->CreateQuicCryptoClientStream( |
- server_hostname, this, crypto_config) : |
- new QuicCryptoClientStream(server_hostname, this, crypto_config)); |
+ server_hostname, server_port, this, crypto_config) : |
+ new QuicCryptoClientStream( |
+ server_hostname, server_port, this, crypto_config)); |
connection->set_debug_visitor(&logger_); |
// TODO(rch): pass in full host port proxy pair |