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

Unified Diff: chrome/browser/history/history_unittest.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/history/history_unittest.cc
diff --git a/chrome/browser/history/history_unittest.cc b/chrome/browser/history/history_unittest.cc
index ceb960866bfc698c1296deb9e2a66ee1573de0ba..7f8a676c5d5b1fa6dc86436a2229e20dca6a6b97 100644
--- a/chrome/browser/history/history_unittest.cc
+++ b/chrome/browser/history/history_unittest.cc
@@ -32,6 +32,7 @@
#include "base/memory/scoped_vector.h"
#include "base/message_loop.h"
#include "base/path_service.h"
+#include "base/pickle.h"
#include "base/scoped_temp_dir.h"
#include "base/string_util.h"
#include "base/task.h"
@@ -198,7 +199,11 @@ class HistoryTest : public testing::Test {
512,
state,
0,
- 0);
+ false,
+ Pickle(),
+ "",
+ "",
+ DOWNLOAD_INTERRUPT_REASON_NONE);
return db_->CreateDownload(download);
}

Powered by Google App Engine
This is Rietveld 408576698