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

Unified Diff: content/browser/download/download_manager_impl_unittest.cc

Issue 11363222: Persist download interrupt reason, both target and current paths, and url_chain. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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: content/browser/download/download_manager_impl_unittest.cc
diff --git a/content/browser/download/download_manager_impl_unittest.cc b/content/browser/download/download_manager_impl_unittest.cc
index 2bf454ce4bf7848de7fd1f5c4e9b8cbf78ec096f..a6e82c659dd7578711b7ff5f2f0a55d5031f393b 100644
--- a/content/browser/download/download_manager_impl_unittest.cc
+++ b/content/browser/download/download_manager_impl_unittest.cc
@@ -185,8 +185,8 @@ class MockDownloadManagerDelegate : public DownloadManagerDelegate {
MOCK_METHOD0(GenerateFileHash, bool());
MOCK_METHOD1(AddItemToPersistentStore, void(DownloadItem*));
MOCK_METHOD1(UpdateItemInPersistentStore, void(DownloadItem*));
- MOCK_METHOD2(UpdatePathForItemInPersistentStore,
- void(DownloadItem*, const FilePath&));
+ MOCK_METHOD3(UpdatePathForItemInPersistentStore,
+ void(DownloadItem*, const FilePath&, const FilePath&));
MOCK_METHOD1(RemoveItemFromPersistentStore, void(DownloadItem*));
MOCK_METHOD2(RemoveItemsFromPersistentStoreBetween, void(
base::Time remove_begin, base::Time remove_end));

Powered by Google App Engine
This is Rietveld 408576698