| Index: net/http/http_cache_transaction.cc
|
| diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
|
| index a52309b69552081b74a8300b3c045d9b86b1bd53..808145a6e08f7335a4ee78b63e12d8863626f3f9 100644
|
| --- a/net/http/http_cache_transaction.cc
|
| +++ b/net/http/http_cache_transaction.cc
|
| @@ -135,7 +135,6 @@ HttpCache::Transaction::Transaction(
|
| read_offset_(0),
|
| effective_load_flags_(0),
|
| write_len_(0),
|
| - final_upload_progress_(0),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(
|
| base::Bind(&Transaction::OnIOComplete,
|
| @@ -418,7 +417,7 @@ LoadState HttpCache::Transaction::GetLoadState() const {
|
| return LOAD_STATE_IDLE;
|
| }
|
|
|
| -uint64 HttpCache::Transaction::GetUploadProgress() const {
|
| +UploadProgress HttpCache::Transaction::GetUploadProgress() const {
|
| if (network_trans_.get())
|
| return network_trans_->GetUploadProgress();
|
| return final_upload_progress_;
|
|
|