| Index: chrome/browser/history/history_unittest.cc
|
| diff --git a/chrome/browser/history/history_unittest.cc b/chrome/browser/history/history_unittest.cc
|
| index ceb960866bfc698c1296deb9e2a66ee1573de0ba..2a129018c469abb7e5a3252dbd91f41c9eddd832 100644
|
| --- a/chrome/browser/history/history_unittest.cc
|
| +++ b/chrome/browser/history/history_unittest.cc
|
| @@ -190,6 +190,7 @@ class HistoryTest : public testing::Test {
|
| int64 AddDownload(int32 state, const Time& time) {
|
| DownloadPersistentStoreInfo download(
|
| FilePath(FILE_PATH_LITERAL("foo-path")),
|
| + FilePath(),
|
| GURL("foo-url"),
|
| GURL(""),
|
| time,
|
| @@ -198,7 +199,11 @@ class HistoryTest : public testing::Test {
|
| 512,
|
| state,
|
| 0,
|
| - 0);
|
| + false,
|
| + "",
|
| + "",
|
| + "",
|
| + DOWNLOAD_INTERRUPT_REASON_NONE);
|
| return db_->CreateDownload(download);
|
| }
|
|
|
|
|