| Index: net/quic/quic_bandwidth.cc
|
| diff --git a/net/quic/quic_bandwidth.cc b/net/quic/quic_bandwidth.cc
|
| index dbce39d354908a30c431dc7b5776ea795181f07c..8612d5f07f0ee3e4aeb61e97f1de00010d8ad6f7 100644
|
| --- a/net/quic/quic_bandwidth.cc
|
| +++ b/net/quic/quic_bandwidth.cc
|
| @@ -96,7 +96,7 @@ QuicBandwidth QuicBandwidth::Subtract(const QuicBandwidth& delta) const {
|
| }
|
|
|
| QuicBandwidth QuicBandwidth::Scale(float scale_factor) const {
|
| - return QuicBandwidth(bits_per_second_ * scale_factor);
|
| + return QuicBandwidth(static_cast<int64>(bits_per_second_ * scale_factor));
|
| }
|
|
|
| QuicTime::Delta QuicBandwidth::TransferTime(QuicByteCount bytes) const {
|
|
|