| Index: net/quic/quic_connection_logger_unittest.cc
|
| diff --git a/net/quic/quic_connection_logger_unittest.cc b/net/quic/quic_connection_logger_unittest.cc
|
| index ebaa12dbfeccb8fbb1845f941c955465e1cee0a2..268e7f7a32304f7efbb5b7c7443b3eab3f24478e 100644
|
| --- a/net/quic/quic_connection_logger_unittest.cc
|
| +++ b/net/quic/quic_connection_logger_unittest.cc
|
| @@ -32,7 +32,9 @@ class QuicConnectionLoggerPeer {
|
| class QuicConnectionLoggerTest : public ::testing::Test {
|
| protected:
|
| QuicConnectionLoggerTest()
|
| - : session_(new MockConnection(&helper_, Perspective::IS_CLIENT)),
|
| + : session_(new MockConnection(&helper_,
|
| + &alarm_factory_,
|
| + Perspective::IS_CLIENT)),
|
| logger_(&session_,
|
| "CONNECTION_UNKNOWN",
|
| /*socket_performance_watcher=*/nullptr,
|
| @@ -40,6 +42,7 @@ class QuicConnectionLoggerTest : public ::testing::Test {
|
|
|
| BoundNetLog net_log_;
|
| MockConnectionHelper helper_;
|
| + MockAlarmFactory alarm_factory_;
|
| MockQuicSpdySession session_;
|
| QuicConnectionLogger logger_;
|
| };
|
|
|