| Index: net/quic/bidirectional_stream_quic_impl.cc
|
| diff --git a/net/quic/bidirectional_stream_quic_impl.cc b/net/quic/bidirectional_stream_quic_impl.cc
|
| index 1813a66ae3594ff69df9a2cdedfa28e2dd2732bf..b85997b67f2cd479e66dcf7191657bfd439fea2c 100644
|
| --- a/net/quic/bidirectional_stream_quic_impl.cc
|
| +++ b/net/quic/bidirectional_stream_quic_impl.cc
|
| @@ -97,7 +97,7 @@ int BidirectionalStreamQuicImpl::ReadData(IOBuffer* buffer, int buffer_len) {
|
| return ERR_IO_PENDING;
|
| }
|
|
|
| -void BidirectionalStreamQuicImpl::SendData(IOBuffer* data,
|
| +void BidirectionalStreamQuicImpl::SendData(const scoped_refptr<IOBuffer>& data,
|
| int length,
|
| bool end_stream) {
|
| DCHECK(stream_);
|
| @@ -117,7 +117,7 @@ void BidirectionalStreamQuicImpl::SendData(IOBuffer* data,
|
| }
|
|
|
| void BidirectionalStreamQuicImpl::SendvData(
|
| - const std::vector<IOBuffer*>& buffers,
|
| + const std::vector<scoped_refptr<IOBuffer>>& buffers,
|
| const std::vector<int>& lengths,
|
| bool end_stream) {
|
| DCHECK(stream_);
|
|
|