Index: chrome/browser/history/history_backend.cc |
diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc |
index d9cac45531022d7b86d5a30e683e844251537665..e1387dcba56c402766fec39b541a6050302723c7 100644 |
--- a/chrome/browser/history/history_backend.cc |
+++ b/chrome/browser/history/history_backend.cc |
@@ -1117,11 +1117,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. |