Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: net/quic/test_tools/quic_multipath_sent_packet_manager_peer.h

Issue 2183493002: Add a merely pass-through QuicMultipathSentPacketManager. Protected behind blocked flag FLAGS_quic_… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698