Chromium Code Reviews| Index: net/quic/test_tools/quic_test_utils.h |
| diff --git a/net/quic/test_tools/quic_test_utils.h b/net/quic/test_tools/quic_test_utils.h |
| index cbb63b8e2a6fb8e2fb6598f10034f11c794091ac..bb7423c8967213abfbf0fc5e9983417da572857e 100644 |
| --- a/net/quic/test_tools/quic_test_utils.h |
| +++ b/net/quic/test_tools/quic_test_utils.h |
| @@ -48,11 +48,6 @@ static const uint32_t kInitialStreamFlowControlWindowForTest = |
| 1024 * 1024; // 1 MB |
| static const uint32_t kInitialSessionFlowControlWindowForTest = |
| 1536 * 1024; // 1.5 MB |
| -// Data stream IDs start at 5: the crypto stream is 1, headers stream is 3. |
| -static const QuicStreamId kClientDataStreamId1 = 5; |
| -static const QuicStreamId kClientDataStreamId2 = 7; |
| -static const QuicStreamId kClientDataStreamId3 = 9; |
| -static const QuicStreamId kServerDataStreamId1 = 4; |
| // Returns the test peer IP address. |
| QuicIpAddress TestPeerIPAddress(); |
| @@ -948,10 +943,6 @@ void CreateServerSessionForTest( |
| PacketSavingConnection** server_connection, |
| TestQuicSpdyServerSession** server_session); |
| -// Helper to generate client side stream ids, generalizes |
| -// kClientDataStreamId1 etc. above. |
| -QuicStreamId QuicClientDataStreamId(int i); |
| - |
| // Verifies that the relative error of |actual| with respect to |expected| is |
| // no more than |margin|. |
| @@ -990,6 +981,12 @@ inline QuicIOVector MakeIOVector(QuicStringPiece str, struct iovec* iov) { |
| return quic_iov; |
| } |
| +// Utilities that will adapt stream ids when http stream pairs are |
| +// enabled. |
| +QuicStreamId NextStreamId(QuicVersion version); |
| +QuicStreamId GetNthClientInitiatedStreamId(QuicVersion version, int n); |
| +QuicStreamId GetNthServerInitiatedStreamId(QuicVersion version, int n); |
|
Ryan Hamilton
2017/05/03 19:15:34
Do these methods need to be merged back to the int
Buck
2017/05/03 21:48:16
Yes.
|
| + |
| } // namespace test |
| } // namespace net |