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

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

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_SENT_PACKET_MANAGER_PEER_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_
6 #define NET_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_ 6 #define NET_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_
7 7
8 #include "net/quic/quic_protocol.h" 8 #include "net/quic/quic_protocol.h"
9 #include "net/quic/quic_sent_packet_manager.h" 9 #include "net/quic/quic_sent_packet_manager.h"
10 10
11 namespace net { 11 namespace net {
12 12
13 class SendAlgorithmInterface; 13 class SendAlgorithmInterface;
14 14
15 namespace test { 15 namespace test {
16 16
17 class QuicSentPacketManagerPeer { 17 class QuicSentPacketManagerPeer {
18 public: 18 public:
19 static void SetMaxTailLossProbes( 19 static void SetMaxTailLossProbes(QuicSentPacketManager* sent_packet_manager,
20 QuicSentPacketManager* sent_packet_manager, size_t max_tail_loss_probes); 20 size_t max_tail_loss_probes);
21 21
22 static void SetSendAlgorithm(QuicSentPacketManager* sent_packet_manager, 22 static void SetSendAlgorithm(QuicSentPacketManager* sent_packet_manager,
23 SendAlgorithmInterface* send_algorithm); 23 SendAlgorithmInterface* send_algorithm);
24 24
25 static const LossDetectionInterface* GetLossAlgorithm( 25 static const LossDetectionInterface* GetLossAlgorithm(
26 QuicSentPacketManager* sent_packet_manager); 26 QuicSentPacketManager* sent_packet_manager);
27 27
28 static void SetLossAlgorithm(QuicSentPacketManager* sent_packet_manager, 28 static void SetLossAlgorithm(QuicSentPacketManager* sent_packet_manager,
29 LossDetectionInterface* loss_detector); 29 LossDetectionInterface* loss_detector);
30 30
31 static RttStats* GetRttStats(QuicSentPacketManager* sent_packet_manager); 31 static RttStats* GetRttStats(QuicSentPacketManager* sent_packet_manager);
32 32
33 static size_t GetNackCount( 33 static size_t GetNackCount(const QuicSentPacketManager* sent_packet_manager,
34 const QuicSentPacketManager* sent_packet_manager, 34 QuicPacketSequenceNumber sequence_number);
35 QuicPacketSequenceNumber sequence_number);
36 35
37 static size_t GetPendingRetransmissionCount( 36 static size_t GetPendingRetransmissionCount(
38 const QuicSentPacketManager* sent_packet_manager); 37 const QuicSentPacketManager* sent_packet_manager);
39 38
40 static bool HasPendingPackets( 39 static bool HasPendingPackets(
41 const QuicSentPacketManager* sent_packet_manager); 40 const QuicSentPacketManager* sent_packet_manager);
42 41
43 static QuicTime GetSentTime(const QuicSentPacketManager* sent_packet_manager, 42 static QuicTime GetSentTime(const QuicSentPacketManager* sent_packet_manager,
44 QuicPacketSequenceNumber sequence_number); 43 QuicPacketSequenceNumber sequence_number);
45 44
(...skipping 19 matching lines...) Expand all
65 64
66 private: 65 private:
67 DISALLOW_COPY_AND_ASSIGN(QuicSentPacketManagerPeer); 66 DISALLOW_COPY_AND_ASSIGN(QuicSentPacketManagerPeer);
68 }; 67 };
69 68
70 } // namespace test 69 } // namespace test
71 70
72 } // namespace net 71 } // namespace net
73 72
74 #endif // NET_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_ 73 #endif // NET_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698