| Index: net/quic/quic_session.cc
|
| diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
|
| index 86782680fa1d16a258b30254eb33d80e244d0ca7..6147224c2fc0e5789f0aa0514ff1270f8c468782 100644
|
| --- a/net/quic/quic_session.cc
|
| +++ b/net/quic/quic_session.cc
|
| @@ -352,13 +352,10 @@ bool QuicSession::HasPendingHandshake() const {
|
|
|
| QuicConsumedData QuicSession::WritevData(
|
| QuicStreamId id,
|
| - const struct iovec* iov,
|
| - int iov_count,
|
| + const IOVector& data,
|
| QuicStreamOffset offset,
|
| bool fin,
|
| QuicAckNotifier::DelegateInterface* ack_notifier_delegate) {
|
| - IOVector data;
|
| - data.AppendIovec(iov, iov_count);
|
| return connection_->SendStreamData(id, data, offset, fin,
|
| ack_notifier_delegate);
|
| }
|
|
|