| Index: net/http/bidirectional_stream.h
|
| diff --git a/net/http/bidirectional_stream.h b/net/http/bidirectional_stream.h
|
| index 7e6152a48f9d699b62d8853419dfdde9267e1e51..d91e41b9de355bcd9aa19e2bbeab6a8e5f761a49 100644
|
| --- a/net/http/bidirectional_stream.h
|
| +++ b/net/http/bidirectional_stream.h
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| +#include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "net/http/bidirectional_stream_impl.h"
|
| #include "net/http/http_stream_factory.h"
|
| @@ -202,6 +203,13 @@ class NET_EXPORT BidirectionalStream
|
| // non-NULL, if the |stream_request_| successfully finishes.
|
| scoped_ptr<BidirectionalStreamImpl> stream_impl_;
|
|
|
| + // Buffer used for reading.
|
| + scoped_refptr<IOBuffer> read_buffer_;
|
| + // Buffer used for writing.
|
| + scoped_refptr<IOBuffer> write_buffer_;
|
| + // Length of |write_buffer_|.
|
| + size_t write_buffer_len_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(BidirectionalStream);
|
| };
|
|
|
|
|