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..cbba339d573364d89b92c2861a6fe8a80fd7d737 100644 |
--- a/net/http/http_stream_parser.h |
+++ b/net/http/http_stream_parser.h |
@@ -189,6 +189,12 @@ class HttpStreamParser : public ChunkCallback { |
// Callback to be used when doing IO. |
CompletionCallbackImpl<HttpStreamParser> io_callback_; |
+ // Stores an encoded chunk for chunked uploads. |
+ scoped_refptr<IOBuffer> chunk_buf_; |
+ size_t chunk_length_; |
+ size_t chunk_length_without_encoding_; |
+ bool sent_last_chunk_; |
+ |
DISALLOW_COPY_AND_ASSIGN(HttpStreamParser); |
}; |