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 b75c3894c8691ac07dc0adb0fc56d2b24af9fc58..ce89ba9da59911e910bdb531eab71162e32c3ad0 100644 |
--- a/net/quic/bidirectional_stream_quic_impl.h |
+++ b/net/quic/bidirectional_stream_quic_impl.h |
@@ -38,10 +38,14 @@ class NET_EXPORT_PRIVATE BidirectionalStreamQuicImpl |
// BidirectionalStreamImpl implementation: |
void Start(const BidirectionalStreamRequestInfo* request_info, |
const BoundNetLog& net_log, |
+ bool disable_auto_flush, |
BidirectionalStreamImpl::Delegate* delegate, |
scoped_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, |
+ const std::vector<int>& lengths, |
+ bool end_stream) override; |
void Cancel() override; |
NextProto GetProtocol() const override; |
int64_t GetTotalReceivedBytes() const override; |
@@ -104,6 +108,8 @@ class NET_EXPORT_PRIVATE BidirectionalStreamQuicImpl |
// Indicates whether initial headers have been received. |
bool has_received_headers_; |
+ bool disable_auto_flush_; |
+ |
base::WeakPtrFactory<BidirectionalStreamQuicImpl> weak_factory_; |
DISALLOW_COPY_AND_ASSIGN(BidirectionalStreamQuicImpl); |