| Index: net/quic/quic_session.cc
|
| diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
|
| index dd3893e716b2a066e9fac31bf448eb0dcdc49f5b..1d880fedd72638d152a88a47aeaf6172a02b96cb 100644
|
| --- a/net/quic/quic_session.cc
|
| +++ b/net/quic/quic_session.cc
|
| @@ -239,15 +239,14 @@ QuicConsumedData QuicSession::WritevData(
|
| QuicIOVector iov,
|
| QuicStreamOffset offset,
|
| bool fin,
|
| - FecProtection fec_protection,
|
| QuicAckListenerInterface* ack_notifier_delegate) {
|
| if (!IsEncryptionEstablished() && id != kCryptoStreamId) {
|
| // Do not let streams write without encryption. The calling stream will end
|
| // up write blocked until OnCanWrite is next called.
|
| return QuicConsumedData(0, false);
|
| }
|
| - QuicConsumedData data = connection_->SendStreamData(
|
| - id, iov, offset, fin, fec_protection, ack_notifier_delegate);
|
| + QuicConsumedData data =
|
| + connection_->SendStreamData(id, iov, offset, fin, ack_notifier_delegate);
|
| write_blocked_streams_.UpdateBytesForStream(id, data.bytes_consumed);
|
| return data;
|
| }
|
|
|