| Index: net/base/upload_data_stream.h
|
| diff --git a/net/base/upload_data_stream.h b/net/base/upload_data_stream.h
|
| index 437dbc594b2c4eb822df8380415a19d3696e0794..19f2a84b56451dc437cabc57e540e2d23b5a93e9 100644
|
| --- a/net/base/upload_data_stream.h
|
| +++ b/net/base/upload_data_stream.h
|
| @@ -45,7 +45,7 @@ class NET_EXPORT UploadDataStream {
|
| // Returns OK on success. Returns ERR_UPLOAD_FILE_CHANGED if the expected
|
| // file modification time is set (usually not set, but set for sliced
|
| // files) and the target file is changed.
|
| - int Init(const CompletionCallback& callback, const BoundNetLog& net_log);
|
| + int Init(const CompletionCallback& callback, const NetLogWithSource& net_log);
|
|
|
| // When possible, reads up to |buf_len| bytes synchronously from the upload
|
| // data stream to |buf| and returns the number of bytes read; otherwise,
|
| @@ -114,7 +114,7 @@ class NET_EXPORT UploadDataStream {
|
| // See Init(). If it returns ERR_IO_PENDING, OnInitCompleted must be called
|
| // once it completes. If the upload is not chunked, SetSize must be called
|
| // before it completes.
|
| - virtual int InitInternal(const BoundNetLog& net_log) = 0;
|
| + virtual int InitInternal(const NetLogWithSource& net_log) = 0;
|
|
|
| // See Read(). For chunked uploads, must call SetIsFinalChunk if this is the
|
| // final chunk. For non-chunked uploads, the UploadDataStream determins which
|
| @@ -142,7 +142,7 @@ class NET_EXPORT UploadDataStream {
|
|
|
| CompletionCallback callback_;
|
|
|
| - BoundNetLog net_log_;
|
| + NetLogWithSource net_log_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(UploadDataStream);
|
| };
|
|
|