| Index: net/tools/quic/quic_client_session.cc
|
| diff --git a/net/tools/quic/quic_client_session.cc b/net/tools/quic/quic_client_session.cc
|
| index 29b178a5c1fe36e9327f7e12014a5c097213abf3..aca5418ac377668b25aa06f9710715b062e97634 100644
|
| --- a/net/tools/quic/quic_client_session.cc
|
| +++ b/net/tools/quic/quic_client_session.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "base/logging.h"
|
| #include "net/quic/crypto/crypto_protocol.h"
|
| -#include "net/quic/quic_session_key.h"
|
| +#include "net/quic/quic_server_id.h"
|
| #include "net/tools/quic/quic_spdy_client_stream.h"
|
|
|
| using std::string;
|
| @@ -15,12 +15,12 @@ namespace net {
|
| namespace tools {
|
|
|
| QuicClientSession::QuicClientSession(
|
| - const QuicSessionKey& server_key,
|
| + const QuicServerId& server_id,
|
| const QuicConfig& config,
|
| QuicConnection* connection,
|
| QuicCryptoClientConfig* crypto_config)
|
| : QuicClientSessionBase(connection, config),
|
| - crypto_stream_(server_key, this, NULL, crypto_config) {
|
| + crypto_stream_(server_id, this, NULL, crypto_config) {
|
| }
|
|
|
| QuicClientSession::~QuicClientSession() {
|
|
|