| Index: net/quic/quic_session.h
|
| diff --git a/net/quic/quic_session.h b/net/quic/quic_session.h
|
| index 275a00e0628174132976360e8c04a610e2dea087..20469058de0bfc0e53af362012378a48419cb6d5 100644
|
| --- a/net/quic/quic_session.h
|
| +++ b/net/quic/quic_session.h
|
| @@ -157,7 +157,11 @@ class NET_EXPORT_PRIVATE QuicSession : public QuicConnectionVisitorInterface {
|
| // streams.
|
| virtual size_t GetNumOpenStreams() const;
|
|
|
| - void MarkWriteBlocked(QuicStreamId id, QuicPriority priority);
|
| + // Add the stream to the session's write-blocked list because it is blocked by
|
| + // connection-level flow control but not by its own stream-level flow control.
|
| + // The stream will be given a chance to write when a connection-level
|
| + // WINDOW_UPDATE arrives.
|
| + void MarkConnectionLevelWriteBlocked(QuicStreamId id, QuicPriority priority);
|
|
|
| // Returns true if the session has data to be sent, either queued in the
|
| // connection, or in a write-blocked stream.
|
|
|