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

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

Issue 2566703002: Various formatting cleanups to net/quic/core/frames (Closed)
Patch Set: Fix Created 4 years 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
« no previous file with comments | « net/net.gypi ('k') | net/quic/core/congestion_control/bbr_sender.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 // BBR (Bottleneck Bandwidth and RTT) congestion control algorithm. 5 // BBR (Bottleneck Bandwidth and RTT) congestion control algorithm.
6 6
7 #ifndef NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ 7 #ifndef NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_
8 #define NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ 8 #define NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_
9 9
10 #include <cstdint> 10 #include <cstdint>
11 #include <ostream> 11 #include <ostream>
12 12
13 #include "base/macros.h"
13 #include "net/quic/core/congestion_control/bandwidth_sampler.h" 14 #include "net/quic/core/congestion_control/bandwidth_sampler.h"
14 #include "net/quic/core/congestion_control/send_algorithm_interface.h" 15 #include "net/quic/core/congestion_control/send_algorithm_interface.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/crypto/quic_random.h" 17 #include "net/quic/core/crypto/quic_random.h"
17 #include "net/quic/core/quic_bandwidth.h" 18 #include "net/quic/core/quic_bandwidth.h"
18 #include "net/quic/core/quic_packets.h" 19 #include "net/quic/core/quic_packets.h"
19 #include "net/quic/core/quic_time.h" 20 #include "net/quic/core/quic_time.h"
20 #include "net/quic/core/quic_unacked_packet_map.h" 21 #include "net/quic/core/quic_unacked_packet_map.h"
21 #include "net/quic/platform/api/quic_export.h" 22 #include "net/quic/platform/api/quic_export.h"
22 23
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 281
281 QUIC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, 282 QUIC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os,
282 const BbrSender::Mode& mode); 283 const BbrSender::Mode& mode);
283 QUIC_EXPORT_PRIVATE std::ostream& operator<<( 284 QUIC_EXPORT_PRIVATE std::ostream& operator<<(
284 std::ostream& os, 285 std::ostream& os,
285 const BbrSender::DebugState& state); 286 const BbrSender::DebugState& state);
286 287
287 } // namespace net 288 } // namespace net
288 289
289 #endif // NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ 290 #endif // NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_
OLDNEW
« no previous file with comments | « net/net.gypi ('k') | net/quic/core/congestion_control/bbr_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698