Index: net/quic/quic_crypto_stream_test.cc |
diff --git a/net/quic/quic_crypto_stream_test.cc b/net/quic/quic_crypto_stream_test.cc |
index e7cc92aa7b8678f3728c023bbb65546bbd2a17c7..326ece8c3619736904d6d726f0f40bae7b0153ee 100644 |
--- a/net/quic/quic_crypto_stream_test.cc |
+++ b/net/quic/quic_crypto_stream_test.cc |
@@ -4,6 +4,7 @@ |
#include "net/quic/quic_crypto_stream.h" |
+#include <cstdint> |
#include <memory> |
#include <string> |
#include <vector> |
@@ -44,7 +45,9 @@ class MockQuicCryptoStream : public QuicCryptoStream { |
class QuicCryptoStreamTest : public ::testing::Test { |
public: |
QuicCryptoStreamTest() |
- : connection_(new MockConnection(&helper_, Perspective::IS_CLIENT)), |
+ : connection_(new MockConnection(&helper_, |
+ &alarm_factory_, |
+ Perspective::IS_CLIENT)), |
session_(connection_), |
stream_(&session_) { |
message_.set_tag(kSHLO); |
@@ -60,6 +63,7 @@ class QuicCryptoStreamTest : public ::testing::Test { |
protected: |
MockConnectionHelper helper_; |
+ MockAlarmFactory alarm_factory_; |
MockConnection* connection_; |
MockQuicSpdySession session_; |
MockQuicCryptoStream stream_; |