OLD | NEW |
---|---|
(Empty) | |
1 #ifndef NET_QUIC_TEST_TOOLS_QUIC_MULTIPATH_SENT_PACKET_MANAGER_PEER_H_ | |
Zhongyi Shi
2016/07/25 22:30:34
ditto
| |
2 #define NET_QUIC_TEST_TOOLS_QUIC_MULTIPATH_SENT_PACKET_MANAGER_PEER_H_ | |
3 | |
4 #include "base/macros.h" | |
5 #include "net/quic/quic_multipath_sent_packet_manager.h" | |
6 #include "net/quic/test_tools/quic_sent_packet_manager_peer.h" | |
7 | |
8 namespace net { | |
9 namespace test { | |
10 | |
11 class QuicMultipathSentPacketManagerPeer { | |
12 public: | |
13 // Add a path |manager| with close state. | |
14 static void AddPathWithCloseState( | |
15 QuicMultipathSentPacketManager* multipath_manager, | |
16 QuicSentPacketManagerInterface* manager); | |
17 | |
18 // Add a path |manager| with active state. | |
19 static void AddPathWithActiveState( | |
20 QuicMultipathSentPacketManager* multipath_manager, | |
21 QuicSentPacketManagerInterface* manager); | |
22 }; | |
23 | |
24 } // namespace test | |
25 } // namespace net | |
26 | |
27 #endif // NET_QUIC_TEST_TOOLS_QUIC_MULTIPATH_SENT_PACKET_MANAGER_PEER_H_ | |
OLD | NEW |