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

Side by Side Diff: net/quic/core/congestion_control/rtt_stats.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 // A convenience class to store rtt samples and calculate smoothed rtt. 5 // A convenience class to store rtt samples and calculate smoothed rtt.
6 6
7 #ifndef NET_QUIC_CONGESTION_CONTROL_RTT_STATS_H_ 7 #ifndef NET_QUIC_CONGESTION_CONTROL_RTT_STATS_H_
8 #define NET_QUIC_CONGESTION_CONTROL_RTT_STATS_H_ 8 #define NET_QUIC_CONGESTION_CONTROL_RTT_STATS_H_
9 9
10 #include <stdint.h> 10 #include <stdint.h>
11 11
12 #include <algorithm> 12 #include <algorithm>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "net/base/net_export.h"
15 #include "net/quic/core/congestion_control/windowed_filter.h" 16 #include "net/quic/core/congestion_control/windowed_filter.h"
16 #include "net/quic/core/quic_bug_tracker.h" 17 #include "net/quic/core/quic_bug_tracker.h"
17 #include "net/quic/core/quic_protocol.h" 18 #include "net/quic/core/quic_protocol.h"
18 #include "net/quic/core/quic_time.h" 19 #include "net/quic/core/quic_time.h"
19 20
20 namespace net { 21 namespace net {
21 22
22 namespace test { 23 namespace test {
23 class RttStatsPeer; 24 class RttStatsPeer;
24 } // namespace test 25 } // namespace test
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 QuicTime, 105 QuicTime,
105 QuicTime::Delta> 106 QuicTime::Delta>
106 windowed_min_rtt_; 107 windowed_min_rtt_;
107 108
108 DISALLOW_COPY_AND_ASSIGN(RttStats); 109 DISALLOW_COPY_AND_ASSIGN(RttStats);
109 }; 110 };
110 111
111 } // namespace net 112 } // namespace net
112 113
113 #endif // NET_QUIC_CONGESTION_CONTROL_RTT_STATS_H_ 114 #endif // NET_QUIC_CONGESTION_CONTROL_RTT_STATS_H_
OLDNEW
« no previous file with comments | « net/quic/core/congestion_control/prr_sender.h ('k') | net/quic/core/crypto/aead_base_decrypter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698