Index: chrome/browser/history/history.cc |
diff --git a/chrome/browser/history/history.cc b/chrome/browser/history/history.cc |
index d7508d31be36fc62244c72fd3d53e845ba0b9407..3797ad9335fa40e2cf16c6d7755f21e6956a5fa9 100644 |
--- a/chrome/browser/history/history.cc |
+++ b/chrome/browser/history/history.cc |
@@ -541,11 +541,8 @@ void HistoryService::CleanUpInProgressEntries() { |
// Handle updates for a particular download. This is a 'fire and forget' |
// operation, so we don't need to be called back. |
-void HistoryService::UpdateDownload(int64 received_bytes, |
- int32 state, |
- int64 db_handle) { |
- ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::UpdateDownload, |
- received_bytes, state, db_handle); |
+void HistoryService::UpdateDownload(const DownloadPersistentStoreInfo& data) { |
+ ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::UpdateDownload, data); |
} |
void HistoryService::UpdateDownloadPath(const FilePath& path, |