| Index: net/base/upload_data_stream.h
|
| ===================================================================
|
| --- net/base/upload_data_stream.h (revision 4818)
|
| +++ net/base/upload_data_stream.h (working copy)
|
| @@ -12,7 +12,7 @@
|
|
|
| class UploadDataStream {
|
| public:
|
| - UploadDataStream(const UploadData* data);
|
| + explicit UploadDataStream(const UploadData* data);
|
| ~UploadDataStream();
|
|
|
| // Returns the stream's buffer and buffer length.
|
| @@ -24,9 +24,6 @@
|
| // the upload data to be consumed.
|
| void DidConsume(size_t num_bytes);
|
|
|
| - // Call to reset the stream position to the beginning.
|
| - void Reset();
|
| -
|
| // Returns the total size of the data stream and the current position.
|
| uint64 size() const { return total_size_; }
|
| uint64 position() const { return current_position_; }
|
|
|