Index: net/quic/quic_stream_factory.h |
diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h |
index 2fad1fc709fda46d4181a571e067310c479542dc..c531aaef24a8abbf8904c5fd781abeca85351b71 100644 |
--- a/net/quic/quic_stream_factory.h |
+++ b/net/quic/quic_stream_factory.h |
@@ -105,6 +105,7 @@ class NET_EXPORT_PRIVATE QuicStreamFactory |
bool always_require_handshake_confirmation, |
bool disable_connection_pooling, |
int load_server_info_timeout, |
+ bool load_server_info_if_already_spoke_quic, |
const QuicTagVector& connection_options); |
~QuicStreamFactory() override; |
@@ -288,6 +289,10 @@ class NET_EXPORT_PRIVATE QuicStreamFactory |
// |load_server_info_timeout_ms_| to 0. |
int load_server_info_timeout_ms_; |
+ // Set if we do not want to load QUIC server information when |
+ // AlternateProtocolMap doesn't have an entry for QUIC. |
+ bool load_server_info_if_already_spoke_quic_; |
+ |
// Each profile will (probably) have a unique port_seed_ value. This value is |
// used to help seed a pseudo-random number generator (PortSuggester) so that |
// we consistently (within this profile) suggest the same ephemeral port when |