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

Side by Side Diff: net/quic/core/congestion_control/loss_detection_interface.h

Issue 2396503002: Fix net_export.h includes. (Closed)
Patch Set: Created 4 years, 2 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // The pure virtual class for send side loss detection algorithm. 5 // The pure virtual class for send side loss detection algorithm.
6 6
7 #ifndef NET_QUIC_CONGESTION_CONTROL_LOSS_DETECTION_INTERFACE_H_ 7 #ifndef NET_QUIC_CONGESTION_CONTROL_LOSS_DETECTION_INTERFACE_H_
8 #define NET_QUIC_CONGESTION_CONTROL_LOSS_DETECTION_INTERFACE_H_ 8 #define NET_QUIC_CONGESTION_CONTROL_LOSS_DETECTION_INTERFACE_H_
9 9
10 #include "net/base/net_export.h"
10 #include "net/quic/core/congestion_control/send_algorithm_interface.h" 11 #include "net/quic/core/congestion_control/send_algorithm_interface.h"
11 #include "net/quic/core/quic_protocol.h" 12 #include "net/quic/core/quic_protocol.h"
12 #include "net/quic/core/quic_time.h" 13 #include "net/quic/core/quic_time.h"
13 14
14 namespace net { 15 namespace net {
15 16
16 class QuicUnackedPacketMap; 17 class QuicUnackedPacketMap;
17 class RttStats; 18 class RttStats;
18 19
19 class NET_EXPORT_PRIVATE LossDetectionInterface { 20 class NET_EXPORT_PRIVATE LossDetectionInterface {
(...skipping 19 matching lines...) Expand all
39 virtual void SpuriousRetransmitDetected( 40 virtual void SpuriousRetransmitDetected(
40 const QuicUnackedPacketMap& unacked_packets, 41 const QuicUnackedPacketMap& unacked_packets,
41 QuicTime time, 42 QuicTime time,
42 const RttStats& rtt_stats, 43 const RttStats& rtt_stats,
43 QuicPacketNumber spurious_retransmission) = 0; 44 QuicPacketNumber spurious_retransmission) = 0;
44 }; 45 };
45 46
46 } // namespace net 47 } // namespace net
47 48
48 #endif // NET_QUIC_CONGESTION_CONTROL_LOSS_DETECTION_INTERFACE_H_ 49 #endif // NET_QUIC_CONGESTION_CONTROL_LOSS_DETECTION_INTERFACE_H_
OLDNEW
« no previous file with comments | « net/quic/core/congestion_control/general_loss_algorithm.h ('k') | net/quic/core/congestion_control/pacing_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698