| Index: net/quic/bidirectional_stream_quic_impl.h
|
| diff --git a/net/quic/bidirectional_stream_quic_impl.h b/net/quic/bidirectional_stream_quic_impl.h
|
| index 2570b902546542365c0e5b5a55bdc32606ab7cb0..e3ff775d8e4c71c52a1bf1bf537c28e497e88783 100644
|
| --- a/net/quic/bidirectional_stream_quic_impl.h
|
| +++ b/net/quic/bidirectional_stream_quic_impl.h
|
| @@ -43,8 +43,10 @@ class NET_EXPORT_PRIVATE BidirectionalStreamQuicImpl
|
| BidirectionalStreamImpl::Delegate* delegate,
|
| std::unique_ptr<base::Timer> timer) override;
|
| int ReadData(IOBuffer* buffer, int buffer_len) override;
|
| - void SendData(IOBuffer* data, int length, bool end_stream) override;
|
| - void SendvData(const std::vector<IOBuffer*>& buffers,
|
| + void SendData(const scoped_refptr<IOBuffer>& data,
|
| + int length,
|
| + bool end_stream) override;
|
| + void SendvData(const std::vector<scoped_refptr<IOBuffer>>& buffers,
|
| const std::vector<int>& lengths,
|
| bool end_stream) override;
|
| void Cancel() override;
|
|
|