| Index: net/tools/quic/quic_simple_client.cc
|
| diff --git a/net/tools/quic/quic_simple_client.cc b/net/tools/quic/quic_simple_client.cc
|
| index d3d811aa935bed172ead5f86c817a533ef8736ad..91039ee71b78f9d982283bc7da445a23f3e3b85a 100644
|
| --- a/net/tools/quic/quic_simple_client.cc
|
| +++ b/net/tools/quic/quic_simple_client.cc
|
| @@ -25,6 +25,9 @@ using std::string;
|
| using std::vector;
|
|
|
| namespace net {
|
| +
|
| +class SocketPerformanceWatcher;
|
| +
|
| namespace tools {
|
|
|
| void QuicSimpleClient::ClientQuicDataToResend::Resend() {
|
| @@ -212,7 +215,7 @@ void QuicSimpleClient::StartConnect() {
|
| CreateQuicClientSession(new QuicConnection(
|
| GetNextConnectionId(), server_address_, helper_.get(), factory,
|
| /* owns_writer= */ false, Perspective::IS_CLIENT, server_id().is_https(),
|
| - supported_versions()));
|
| + supported_versions(), scoped_ptr<SocketPerformanceWatcher>()));
|
|
|
| session()->Initialize();
|
| session()->CryptoConnect();
|
|
|