Chromium Code Reviews| Index: net/spdy/spdy_test_util_common.h |
| diff --git a/net/spdy/spdy_test_util_common.h b/net/spdy/spdy_test_util_common.h |
| index a206cf2f13188a77b8374f28b452f1138e6fb6f5..c590b32edb15d8e6ce25fb1f49e4e8e6a1bb986a 100644 |
| --- a/net/spdy/spdy_test_util_common.h |
| +++ b/net/spdy/spdy_test_util_common.h |
| @@ -29,6 +29,8 @@ |
| #include "net/http/transport_security_state.h" |
| #include "net/proxy/proxy_server.h" |
| #include "net/proxy/proxy_service.h" |
| +#include "net/quic/crypto/quic_random.h" |
| +#include "net/quic/test_tools/mock_crypto_client_stream_factory.h" |
| #include "net/socket/next_proto.h" |
| #include "net/socket/socket_test_util.h" |
| #include "net/spdy/spdy_protocol.h" |
| @@ -186,7 +188,9 @@ struct SpdySessionDependencies { |
| SpdySessionDependencies* session_deps); |
| // NOTE: host_resolver must be ordered before http_auth_handler_factory. |
| + std::unique_ptr<MockCryptoClientStreamFactory> crypto_client_stream_factory; |
| std::unique_ptr<MockHostResolverBase> host_resolver; |
| + std::unique_ptr<QuicRandom> quic_random; |
|
Ryan Hamilton
2016/06/29 23:12:28
It's a bit of a bummer to have net/spdy/ depend on
|
| std::unique_ptr<CertVerifier> cert_verifier; |
| std::unique_ptr<ChannelIDService> channel_id_service; |
| std::unique_ptr<TransportSecurityState> transport_security_state; |