| Index: net/quic/chromium/quic_chromium_client_session.h
|
| diff --git a/net/quic/chromium/quic_chromium_client_session.h b/net/quic/chromium/quic_chromium_client_session.h
|
| index 7d9a87bb1e7cb0444b430274d79919cc8c15d65f..2fcf9891d7201512d1dd0f2b1b69d5318ba5c9f5 100644
|
| --- a/net/quic/chromium/quic_chromium_client_session.h
|
| +++ b/net/quic/chromium/quic_chromium_client_session.h
|
| @@ -322,6 +322,14 @@ class NET_EXPORT_PRIVATE QuicChromiumClientSession
|
| // TODO(xunjieli): It only tracks |packet_readers_|. Write a better estimate.
|
| size_t EstimateMemoryUsage() const;
|
|
|
| + bool callback_not_null() const { return !callback_.is_null(); }
|
| + bool received_go_away_;
|
| + bool received_read_error_;
|
| + bool connection_closed_;
|
| + bool notified_session_going_away_;
|
| + bool notified_session_closed_later_;
|
| + bool notified_session_closed_;
|
| +
|
| protected:
|
| // QuicSession methods:
|
| bool ShouldCreateIncomingDynamicStream(QuicStreamId id) override;
|
|
|