| Index: net/base/upload_data_stream.h
|
| diff --git a/net/base/upload_data_stream.h b/net/base/upload_data_stream.h
|
| index 0dd7dd317ecdbc4c80133222bc568468ce7a879d..9df5db0899c4de70f7f4fa75706004fc9696dfd9 100644
|
| --- a/net/base/upload_data_stream.h
|
| +++ b/net/base/upload_data_stream.h
|
| @@ -14,7 +14,7 @@ class IOBuffer;
|
|
|
| class UploadDataStream {
|
| public:
|
| - explicit UploadDataStream(const UploadData* data);
|
| + explicit UploadDataStream(UploadData* data);
|
| ~UploadDataStream();
|
|
|
| // Returns the stream's buffer and buffer length.
|
| @@ -42,7 +42,7 @@ class UploadDataStream {
|
| // left to fill the buffer with.
|
| void FillBuf();
|
|
|
| - const UploadData* data_;
|
| + UploadData* data_;
|
|
|
| // This buffer is filled with data to be uploaded. The data to be sent is
|
| // always at the front of the buffer. If we cannot send all of the buffer at
|
|
|