| Index: chrome/browser/download/download_history.cc
|
| diff --git a/chrome/browser/download/download_history.cc b/chrome/browser/download/download_history.cc
|
| index f0865e2db43ad7c8315b1307266cd616d0e9cbe6..0a4d4d87464f1f7fcd4f7718db6467d59c780296 100644
|
| --- a/chrome/browser/download/download_history.cc
|
| +++ b/chrome/browser/download/download_history.cc
|
| @@ -34,6 +34,7 @@
|
| #include "base/metrics/histogram_macros.h"
|
| #include "chrome/browser/download/download_crx_util.h"
|
| #include "components/history/content/browser/download_constants_utils.h"
|
| +#include "components/history/content/browser/download_database_helper.h"
|
| #include "components/history/core/browser/download_database.h"
|
| #include "components/history/core/browser/download_row.h"
|
| #include "components/history/core/browser/history_service.h"
|
| @@ -297,7 +298,7 @@ void DownloadHistory::QueryCallback(std::unique_ptr<InfoVector> infos) {
|
| history::ToContentDownloadState(it->state),
|
| history::ToContentDownloadDangerType(it->danger_type),
|
| history::ToContentDownloadInterruptReason(it->interrupt_reason),
|
| - it->opened);
|
| + it->opened, history::ToContentReceivedSlices(it->download_slice_info));
|
| #if BUILDFLAG(ENABLE_EXTENSIONS)
|
| if (!it->by_ext_id.empty() && !it->by_ext_name.empty()) {
|
| new extensions::DownloadedByExtension(
|
|
|