| Index: net/quic/quic_stream_factory.h
|
| diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h
|
| index c5aa835a4b8869e3bd6303dd652471114aa75968..410a7af1236c2dcc382974224c9d90900c2299aa 100644
|
| --- a/net/quic/quic_stream_factory.h
|
| +++ b/net/quic/quic_stream_factory.h
|
| @@ -160,9 +160,7 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
|
| return require_confirmation_;
|
| }
|
|
|
| - void set_require_confirmation(bool require_confirmation) {
|
| - require_confirmation_ = require_confirmation;
|
| - }
|
| + void set_require_confirmation(bool require_confirmation);
|
|
|
| QuicConnectionHelper* helper() { return helper_.get(); }
|
|
|
| @@ -293,6 +291,10 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
|
| // port requests.
|
| uint64 port_seed_;
|
|
|
| + // Local address of socket that was created in CreateSession.
|
| + IPEndPoint local_address_;
|
| + bool check_persisted_supports_quic_;
|
| +
|
| base::WeakPtrFactory<QuicStreamFactory> weak_factory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory);
|
|
|