| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_SESSION_PEER_H_ | 5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_SESSION_PEER_H_ |
| 6 #define NET_QUIC_TEST_TOOLS_QUIC_SESSION_PEER_H_ | 6 #define NET_QUIC_TEST_TOOLS_QUIC_SESSION_PEER_H_ |
| 7 | 7 |
| 8 #include <map> |
| 9 |
| 8 #include "net/quic/quic_protocol.h" | 10 #include "net/quic/quic_protocol.h" |
| 9 #include "net/quic/quic_write_blocked_list.h" | 11 #include "net/quic/quic_write_blocked_list.h" |
| 10 | 12 |
| 11 namespace net { | 13 namespace net { |
| 12 | 14 |
| 13 class QuicCryptoStream; | 15 class QuicCryptoStream; |
| 14 class QuicDataStream; | 16 class QuicDataStream; |
| 15 class QuicHeadersStream; | 17 class QuicHeadersStream; |
| 16 class QuicSession; | 18 class QuicSession; |
| 17 | 19 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 32 GetLocallyClosedStreamsHighestOffset(QuicSession* session); | 34 GetLocallyClosedStreamsHighestOffset(QuicSession* session); |
| 33 | 35 |
| 34 private: | 36 private: |
| 35 DISALLOW_COPY_AND_ASSIGN(QuicSessionPeer); | 37 DISALLOW_COPY_AND_ASSIGN(QuicSessionPeer); |
| 36 }; | 38 }; |
| 37 | 39 |
| 38 } // namespace test | 40 } // namespace test |
| 39 } // namespace net | 41 } // namespace net |
| 40 | 42 |
| 41 #endif // NET_QUIC_TEST_TOOLS_QUIC_SESSION_PEER_H_ | 43 #endif // NET_QUIC_TEST_TOOLS_QUIC_SESSION_PEER_H_ |
| OLD | NEW |