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

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

Issue 2566473002: Fix include guards for QUIC files. (Closed)
Patch Set: 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
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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 // Cubic algorithm, helper class to TCP cubic. 5 // Cubic algorithm, helper class to TCP cubic.
6 // For details see http://netsrv.csc.ncsu.edu/export/cubic_a_new_tcp_2008.pdf. 6 // For details see http://netsrv.csc.ncsu.edu/export/cubic_a_new_tcp_2008.pdf.
7 7
8 #ifndef NET_QUIC_CONGESTION_CONTROL_CUBIC_BYTES_H_ 8 #ifndef NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_BYTES_H_
9 #define NET_QUIC_CONGESTION_CONTROL_CUBIC_BYTES_H_ 9 #define NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_BYTES_H_
10 10
11 #include <stdint.h> 11 #include <stdint.h>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "net/base/net_export.h" 14 #include "net/base/net_export.h"
15 #include "net/quic/core/quic_bandwidth.h" 15 #include "net/quic/core/quic_bandwidth.h"
16 #include "net/quic/core/quic_connection_stats.h" 16 #include "net/quic/core/quic_connection_stats.h"
17 #include "net/quic/core/quic_time.h" 17 #include "net/quic/core/quic_time.h"
18 #include "net/quic/platform/api/quic_clock.h" 18 #include "net/quic/platform/api/quic_clock.h"
19 19
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 // Fix convex mode for cubic. 94 // Fix convex mode for cubic.
95 // TODO(jokulik): Remove once the cubic convex experiment is done. 95 // TODO(jokulik): Remove once the cubic convex experiment is done.
96 bool fix_convex_mode_; 96 bool fix_convex_mode_;
97 97
98 DISALLOW_COPY_AND_ASSIGN(CubicBytes); 98 DISALLOW_COPY_AND_ASSIGN(CubicBytes);
99 }; 99 };
100 100
101 } // namespace net 101 } // namespace net
102 102
103 #endif // NET_QUIC_CONGESTION_CONTROL_CUBIC_BYTES_H_ 103 #endif // NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_BYTES_H_
OLDNEW
« no previous file with comments | « net/quic/core/congestion_control/cubic.h ('k') | net/quic/core/congestion_control/general_loss_algorithm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698