| Index: chrome/browser/download/download_history_unittest.cc
|
| diff --git a/chrome/browser/download/download_history_unittest.cc b/chrome/browser/download/download_history_unittest.cc
|
| index 24b1b4bf7c7e29a7cae11cce86e5aac03ba32fc5..e507764499b82f9df551d837c96b44d23ae2fff1 100644
|
| --- a/chrome/browser/download/download_history_unittest.cc
|
| +++ b/chrome/browser/download/download_history_unittest.cc
|
| @@ -16,6 +16,7 @@
|
| #include "base/rand_util.h"
|
| #include "base/stl_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_constants.h"
|
| #include "components/history/core/browser/download_row.h"
|
| #include "components/history/core/browser/history_service.h"
|
| @@ -235,7 +236,8 @@ class DownloadHistoryTest : public testing::Test {
|
| history::ToContentDownloadState(row.state),
|
| history::ToContentDownloadDangerType(row.danger_type),
|
| history::ToContentDownloadInterruptReason(row.interrupt_reason),
|
| - row.opened);
|
| + row.opened,
|
| + history::ToContentReceivedSlices(row.download_slice_info));
|
| EXPECT_CALL(manager(), MockCreateDownloadItem(adapter))
|
| .WillOnce(DoAll(
|
| InvokeWithoutArgs(
|
|
|