| Index: net/quic/quic_http_stream_test.cc
|
| diff --git a/net/quic/quic_http_stream_test.cc b/net/quic/quic_http_stream_test.cc
|
| index 84d1bf458084f69f05c55139de6c1a3b8ac09746..22e45d6ad289da6558c8db82ff25b3827d844d45 100644
|
| --- a/net/quic/quic_http_stream_test.cc
|
| +++ b/net/quic/quic_http_stream_test.cc
|
| @@ -50,6 +50,9 @@ using testing::AnyNumber;
|
| using testing::Return;
|
|
|
| namespace net {
|
| +
|
| +class SocketPerformanceWatcher;
|
| +
|
| namespace test {
|
| namespace {
|
|
|
| @@ -71,7 +74,8 @@ class TestQuicConnection : public QuicConnection {
|
| true /* owns_writer */,
|
| Perspective::IS_CLIENT,
|
| false /* is_secure */,
|
| - versions) {}
|
| + versions,
|
| + scoped_ptr<SocketPerformanceWatcher>()) {}
|
|
|
| void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) {
|
| QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm);
|
|
|