| Index: net/quic/quic_connection_test.cc
|
| diff --git a/net/quic/quic_connection_test.cc b/net/quic/quic_connection_test.cc
|
| index 5bff36b3f9dee4c91a066abcb1a78165df4513e7..fabaa0b47697cecfc7bd63313e8bf4f08f68f3b3 100644
|
| --- a/net/quic/quic_connection_test.cc
|
| +++ b/net/quic/quic_connection_test.cc
|
| @@ -53,6 +53,9 @@ using testing::StrictMock;
|
| using testing::_;
|
|
|
| namespace net {
|
| +
|
| +class SocketPerformanceWatcher;
|
| +
|
| namespace test {
|
| namespace {
|
|
|
| @@ -401,7 +404,8 @@ class TestConnection : public QuicConnection {
|
| /* owns_writer= */ false,
|
| perspective,
|
| /* is_secure= */ false,
|
| - SupportedVersions(version)) {
|
| + SupportedVersions(version),
|
| + scoped_ptr<SocketPerformanceWatcher>()) {
|
| // Disable tail loss probes for most tests.
|
| QuicSentPacketManagerPeer::SetMaxTailLossProbes(
|
| QuicConnectionPeer::GetSentPacketManager(this), 0);
|
|
|