OLD | NEW |
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 #include "net/quic/congestion_control/fix_rate_sender.h" | 5 #include "net/quic/congestion_control/fix_rate_sender.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 } | 102 } |
103 | 103 |
104 bool FixRateSender::InSlowStart() const { | 104 bool FixRateSender::InSlowStart() const { |
105 return false; | 105 return false; |
106 } | 106 } |
107 | 107 |
108 QuicByteCount FixRateSender::GetSlowStartThreshold() const { | 108 QuicByteCount FixRateSender::GetSlowStartThreshold() const { |
109 return 0; | 109 return 0; |
110 } | 110 } |
111 | 111 |
| 112 CongestionControlType FixRateSender::GetCongestionControlType() const { |
| 113 return kFixRateCongestionControl; |
| 114 } |
| 115 |
112 } // namespace net | 116 } // namespace net |
OLD | NEW |