Chromium Code Reviews| Index: net/spdy/spdy_test_util_spdy2.h |
| diff --git a/net/spdy/spdy_test_util_spdy2.h b/net/spdy/spdy_test_util_spdy2.h |
| index d77fda36b2ccd07866e808f4fb14e8f65a0bf783..988ed738ea385f809ee5b727cba65659408af49f 100644 |
| --- a/net/spdy/spdy_test_util_spdy2.h |
| +++ b/net/spdy/spdy_test_util_spdy2.h |
| @@ -112,10 +112,14 @@ SpdyFrame* ConstructSpdyCredential(const SpdyCredential& credential); |
| // Returns the constructed frame. The caller takes ownership of the frame. |
| SpdyFrame* ConstructSpdyPing(uint32 ping_id); |
| -// Construct a SPDY GOAWAY frame. |
| +// Construct a SPDY GOAWAY frame with last_good_stream_id = 0. |
| // Returns the constructed frame. The caller takes ownership of the frame. |
| SpdyFrame* ConstructSpdyGoAway(); |
| +// Construct a SPDY GOAWAY frame with the specified last_good_stream_id.. |
|
akalin
2013/04/18 01:29:59
remove extra dot
Ryan Hamilton
2013/04/18 17:18:29
Done.
|
| +// Returns the constructed frame. The caller takes ownership of the frame. |
| +SpdyFrame* ConstructSpdyGoAway(SpdyStreamId last_good_stream_id); |
| + |
| // Construct a SPDY WINDOW_UPDATE frame. |
| // Returns the constructed frame. The caller takes ownership of the frame. |
| SpdyFrame* ConstructSpdyWindowUpdate(SpdyStreamId, uint32 delta_window_size); |