| Index: net/http/http_stream_parser.h
|
| diff --git a/net/http/http_stream_parser.h b/net/http/http_stream_parser.h
|
| index 5f7e943ab5073cb98af2d5e087a5d8a0053da652..d9241a6ac91a31c5d4f2a2d33489e8930d49c6dc 100644
|
| --- a/net/http/http_stream_parser.h
|
| +++ b/net/http/http_stream_parser.h
|
| @@ -189,6 +189,13 @@ class HttpStreamParser : public ChunkCallback {
|
| // Callback to be used when doing IO.
|
| CompletionCallbackImpl<HttpStreamParser> io_callback_;
|
|
|
| + // Stores an encoded chunk for chunked uploads.
|
| + // Note: This should perhaps be improved to not create copies of the data.
|
| + scoped_refptr<IOBuffer> chunk_buf_;
|
| + size_t chunk_length_;
|
| + size_t chunk_length_without_encoding_;
|
| + bool sent_last_chunk_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(HttpStreamParser);
|
| };
|
|
|
|
|