Index: net/spdy/spdy_session.h |
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h |
index 55ac9f9dc6438f95b1e3b67918b096c677846fde..5560847b0c1be719d18c453f8d18c05112791495 100644 |
--- a/net/spdy/spdy_session.h |
+++ b/net/spdy/spdy_session.h |
@@ -608,7 +608,14 @@ class NET_EXPORT SpdySession : public base::RefCounted<SpdySession>, |
void RecordHistograms(); |
void RecordProtocolErrorHistogram(SpdyProtocolErrorDetails details); |
- // Closes all streams. Used as part of shutdown. |
+ // Closes all active streams with stream id's greater than |
+ // |last_good_stream_id|, as well as any created or pending streams. |
+ // Does not close unclaimed push streams. |
+ void CloseAllStreamsAfter(SpdyStreamId last_good_stream_id, |
+ net::Error status); |
+ |
+ // Closes all streams, including unclaimed push streams. Used as part of |
+ // shutdown. |
void CloseAllStreams(net::Error status); |
void LogAbandonedStream(const scoped_refptr<SpdyStream>& stream, |