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

Side by Side Diff: net/quic/congestion_control/pacing_sender.cc

Issue 476023002: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0814_2
Patch Set: Created 6 years, 4 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #include "net/quic/congestion_control/pacing_sender.h" 5 #include "net/quic/congestion_control/pacing_sender.h"
6 6
7 namespace net { 7 namespace net {
8 8
9 PacingSender::PacingSender(SendAlgorithmInterface* sender, 9 PacingSender::PacingSender(SendAlgorithmInterface* sender,
10 QuicTime::Delta alarm_granularity, 10 QuicTime::Delta alarm_granularity,
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 } 163 }
164 164
165 QuicByteCount PacingSender::GetCongestionWindow() const { 165 QuicByteCount PacingSender::GetCongestionWindow() const {
166 return sender_->GetCongestionWindow(); 166 return sender_->GetCongestionWindow();
167 } 167 }
168 168
169 bool PacingSender::InSlowStart() const { 169 bool PacingSender::InSlowStart() const {
170 return sender_->InSlowStart(); 170 return sender_->InSlowStart();
171 } 171 }
172 172
173 bool PacingSender::InRecovery() const {
174 return sender_->InRecovery();
175 }
176
173 QuicByteCount PacingSender::GetSlowStartThreshold() const { 177 QuicByteCount PacingSender::GetSlowStartThreshold() const {
174 return sender_->GetSlowStartThreshold(); 178 return sender_->GetSlowStartThreshold();
175 } 179 }
176 180
177 CongestionControlType PacingSender::GetCongestionControlType() const { 181 CongestionControlType PacingSender::GetCongestionControlType() const {
178 return sender_->GetCongestionControlType(); 182 return sender_->GetCongestionControlType();
179 } 183 }
180 184
181 } // namespace net 185 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/congestion_control/pacing_sender.h ('k') | net/quic/congestion_control/send_algorithm_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698