Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(727)

Unified Diff: components/history/core/test/history_backend_db_base_test.cc

Issue 2665243003: add a download slices table into history download db (Closed)
Patch Set: use Select changes() instead of select count(*) Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/history/core/test/history_backend_db_base_test.cc
diff --git a/components/history/core/test/history_backend_db_base_test.cc b/components/history/core/test/history_backend_db_base_test.cc
index 382f790a5853f79be4bfe2f16415510590cbc9a1..6752be21e721ce9cfd17eb3b4a68bc250f9e6355 100644
--- a/components/history/core/test/history_backend_db_base_test.cc
+++ b/components/history/core/test/history_backend_db_base_test.cc
@@ -135,7 +135,8 @@ bool HistoryBackendDBBaseTest::AddDownload(uint32_t id,
"application/vnd.oasis.opendocument.text", "application/octet-stream",
time, time, std::string(), std::string(), 0, 512, state,
DownloadDangerType::NOT_DANGEROUS, kTestDownloadInterruptReasonNone,
- std::string(), id, guid, false, "by_ext_id", "by_ext_name");
+ std::string(), id, guid, false, "by_ext_id", "by_ext_name",
+ std::vector<DownloadJobInfo>());
return db_->CreateDownload(download);
}

Powered by Google App Engine
This is Rietveld 408576698