| Index: net/quic/quic_stream_factory.h
|
| diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h
|
| index 963a60369ac77459df9e5b474fc029885f01cacc..2fe87b51ea75522aeba754bf102c679edbe4f9b6 100644
|
| --- a/net/quic/quic_stream_factory.h
|
| +++ b/net/quic/quic_stream_factory.h
|
| @@ -120,6 +120,12 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
|
| // IP address changes.
|
| virtual void OnIPAddressChanged() OVERRIDE;
|
|
|
| + bool require_confirmation() const { return require_confirmation_; }
|
| +
|
| + void set_require_confirmation(bool require_confirmation) {
|
| + require_confirmation_ = require_confirmation;
|
| + }
|
| +
|
| private:
|
| class Job;
|
|
|
| @@ -148,6 +154,7 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
|
| QuicCryptoClientConfig* GetOrCreateCryptoConfig(
|
| const HostPortProxyPair& host_port_proxy_pair);
|
|
|
| + bool require_confirmation_;
|
| HostResolver* host_resolver_;
|
| ClientSocketFactory* client_socket_factory_;
|
| QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory_;
|
|
|