| Index: net/quic/quic_stream_factory_test.cc
|
| diff --git a/net/quic/quic_stream_factory_test.cc b/net/quic/quic_stream_factory_test.cc
|
| index a68f4c646f9e71cd8f1d049f0fefc89ecbcf126f..88bfdfe177902f851a4ddae4f20b696143ce730a 100644
|
| --- a/net/quic/quic_stream_factory_test.cc
|
| +++ b/net/quic/quic_stream_factory_test.cc
|
| @@ -298,7 +298,8 @@ class QuicStreamFactoryTestBase {
|
| disable_quic_on_timeout_with_open_streams_(false),
|
| idle_connection_timeout_seconds_(kIdleConnectionTimeoutSeconds),
|
| migrate_sessions_on_network_change_(false),
|
| - migrate_sessions_early_(false) {
|
| + migrate_sessions_early_(false),
|
| + race_cert_verification_(false) {
|
| clock_->AdvanceTime(QuicTime::Delta::FromSeconds(1));
|
| }
|
|
|
| @@ -330,7 +331,7 @@ class QuicStreamFactoryTestBase {
|
| close_sessions_on_ip_change_,
|
| disable_quic_on_timeout_with_open_streams_,
|
| idle_connection_timeout_seconds_, migrate_sessions_on_network_change_,
|
| - migrate_sessions_early_, QuicTagVector(),
|
| + migrate_sessions_early_, race_cert_verification_, QuicTagVector(),
|
| /*enable_token_binding*/ false));
|
| factory_->set_require_confirmation(false);
|
| EXPECT_FALSE(factory_->has_quic_server_info_factory());
|
| @@ -522,6 +523,7 @@ class QuicStreamFactoryTestBase {
|
| int idle_connection_timeout_seconds_;
|
| bool migrate_sessions_on_network_change_;
|
| bool migrate_sessions_early_;
|
| + bool race_cert_verification_;
|
| };
|
|
|
| class QuicStreamFactoryTest : public QuicStreamFactoryTestBase,
|
|
|