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

Side by Side Diff: net/quic/congestion_control/tcp_cubic_sender.h

Issue 1009023002: Create a TcpCubicSender in QUIC that tracks the congestion window in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Remove_flag_quic_enable_pacing_88152071
Patch Set: Created 5 years, 9 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
« no previous file with comments | « net/quic/congestion_control/tcp_cubic_bytes_sender_test.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // TCP cubic send side congestion algorithm, emulates the behavior of 5 // TCP cubic send side congestion algorithm, emulates the behavior of TCP cubic.
ramant (doing other things) 2015/03/14 01:21:47 nit: can roll this change back (it is not related,
6 // TCP cubic.
7 6
8 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ 7 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_
9 #define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ 8 #define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_
10 9
11 #include "base/basictypes.h" 10 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
13 #include "net/base/net_export.h" 12 #include "net/base/net_export.h"
14 #include "net/quic/congestion_control/cubic.h" 13 #include "net/quic/congestion_control/cubic.h"
15 #include "net/quic/congestion_control/hybrid_slow_start.h" 14 #include "net/quic/congestion_control/hybrid_slow_start.h"
16 #include "net/quic/congestion_control/prr_sender.h" 15 #include "net/quic/congestion_control/prr_sender.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 bool last_cutback_exited_slowstart_; 124 bool last_cutback_exited_slowstart_;
126 125
127 const QuicClock* clock_; 126 const QuicClock* clock_;
128 127
129 DISALLOW_COPY_AND_ASSIGN(TcpCubicSender); 128 DISALLOW_COPY_AND_ASSIGN(TcpCubicSender);
130 }; 129 };
131 130
132 } // namespace net 131 } // namespace net
133 132
134 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ 133 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_
OLDNEW
« no previous file with comments | « net/quic/congestion_control/tcp_cubic_bytes_sender_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698