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

Unified Diff: chrome/browser/download/download_browsertest.cc

Issue 8404049: Added member data to classes to support download resumption. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with trunk Created 9 years, 1 month 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: chrome/browser/download/download_browsertest.cc
diff --git a/chrome/browser/download/download_browsertest.cc b/chrome/browser/download/download_browsertest.cc
index 3c075ead6fc51ba9fe5fcf2fdab9849841fad9fd..688ca6cb98c9fa6d7cb137a6231b3f9a9ca5d35a 100644
--- a/chrome/browser/download/download_browsertest.cc
+++ b/chrome/browser/download/download_browsertest.cc
@@ -1573,7 +1573,11 @@ IN_PROC_BROWSER_TEST_F(DownloadTest, SearchDownloads) {
128,
DownloadItem::COMPLETE,
1,
- false),
+ false,
+ Pickle(),
+ "",
+ "",
+ DOWNLOAD_INTERRUPT_REASON_NONE),
DownloadPersistentStoreInfo(
FilePath(FILE_PATH_LITERAL("/path/to/another_file")),
GURL("http://www.google.com/reality_download"),
@@ -1584,7 +1588,11 @@ IN_PROC_BROWSER_TEST_F(DownloadTest, SearchDownloads) {
256,
DownloadItem::COMPLETE,
2,
- false),
+ false,
+ Pickle(),
+ "",
+ "",
+ DOWNLOAD_INTERRUPT_REASON_NONE),
DownloadPersistentStoreInfo(
FilePath(FILE_PATH_LITERAL("/different_path/to/another_file")),
GURL("http://www.izzle.com/not_really_a_download"),
@@ -1595,7 +1603,11 @@ IN_PROC_BROWSER_TEST_F(DownloadTest, SearchDownloads) {
512,
DownloadItem::COMPLETE,
3,
- true)
+ true,
+ Pickle(),
+ "",
+ "",
+ DOWNLOAD_INTERRUPT_REASON_NONE)
};
std::vector<DownloadPersistentStoreInfo> entries(
population_entries, population_entries + arraysize(population_entries));
« no previous file with comments | « no previous file | chrome/browser/download/download_item_unittest.cc » ('j') | content/browser/download/base_file.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698