Index: chrome/browser/history/history_backend.cc |
diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc |
index e6b3593b879e9a64297e325a50d385fda2cfe816..2b31f9756f7e63841179f7e0bb3201646807c9e1 100644 |
--- a/chrome/browser/history/history_backend.cc |
+++ b/chrome/browser/history/history_backend.cc |
@@ -1118,11 +1118,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. |