| Index: chrome/browser/history/history_backend.cc
|
| diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc
|
| index 7488b353720ba31d2142d85fb21626aec5dbb3e5..73b29fc7bedead19babdbf6c69c087573695482d 100644
|
| --- a/chrome/browser/history/history_backend.cc
|
| +++ b/chrome/browser/history/history_backend.cc
|
| @@ -1240,15 +1240,9 @@ void HistoryBackend::CreateDownload(
|
| }
|
| }
|
|
|
| -void HistoryBackend::RemoveDownload(int64 db_handle) {
|
| +void HistoryBackend::RemoveDownloads(const std::set<int64>& handles) {
|
| if (db_.get())
|
| - db_->RemoveDownload(db_handle);
|
| -}
|
| -
|
| -void HistoryBackend::RemoveDownloadsBetween(const Time remove_begin,
|
| - const Time remove_end) {
|
| - if (db_.get())
|
| - db_->RemoveDownloadsBetween(remove_begin, remove_end);
|
| + db_->RemoveDownloads(handles);
|
| }
|
|
|
| void HistoryBackend::QueryHistory(scoped_refptr<QueryHistoryRequest> request,
|
|
|