| Index: chrome/browser/history/history_backend.cc
|
| diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc
|
| index bee9c8c8f74223a9731ebab6356cedac1de71f71..cc11b94b064f9ce2ea13aa8d1163a47717e23c25 100644
|
| --- a/chrome/browser/history/history_backend.cc
|
| +++ b/chrome/browser/history/history_backend.cc
|
| @@ -1150,11 +1150,9 @@ void HistoryBackend::CleanUpInProgressEntries() {
|
| }
|
|
|
| // Update a particular download entry.
|
| -void HistoryBackend::UpdateDownload(int64 received_bytes,
|
| - int32 state,
|
| - int64 db_handle) {
|
| +void HistoryBackend::UpdateDownload(const DownloadPersistentStoreInfo& data) {
|
| if (db_.get())
|
| - db_->UpdateDownload(received_bytes, state, db_handle);
|
| + db_->UpdateDownload(data);
|
| }
|
|
|
| // Update the path of a particular download entry.
|
|
|