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

Unified Diff: content/public/test/mock_download_manager.h

Issue 2705283003: Added last_access_time to DownloadItem and History DB (Closed)
Patch Set: Fix tests 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: content/public/test/mock_download_manager.h
diff --git a/content/public/test/mock_download_manager.h b/content/public/test/mock_download_manager.h
index 2d38450ca15ef6dc319eaf86bb2295564df1f019..e3e18bd299cfaabc21a5d5dca1af432c3e23b81c 100644
--- a/content/public/test/mock_download_manager.h
+++ b/content/public/test/mock_download_manager.h
@@ -52,6 +52,7 @@ class MockDownloadManager : public DownloadManager {
DownloadDangerType danger_type;
DownloadInterruptReason interrupt_reason;
bool opened;
+ base::Time last_access_time;
CreateDownloadItemAdapter(const std::string& guid,
uint32_t id,
@@ -74,7 +75,8 @@ class MockDownloadManager : public DownloadManager {
DownloadItem::DownloadState state,
DownloadDangerType danger_type,
DownloadInterruptReason interrupt_reason,
- bool opened);
+ bool opened,
+ const base::Time& last_access_time);
// Required by clang compiler.
CreateDownloadItemAdapter(const CreateDownloadItemAdapter& rhs);
~CreateDownloadItemAdapter();
@@ -133,7 +135,8 @@ class MockDownloadManager : public DownloadManager {
DownloadItem::DownloadState state,
DownloadDangerType danger_type,
DownloadInterruptReason interrupt_reason,
- bool opened) override;
+ bool opened,
+ const base::Time& last_access_time) override;
MOCK_METHOD1(MockCreateDownloadItem,
DownloadItem*(CreateDownloadItemAdapter adapter));

Powered by Google App Engine
This is Rietveld 408576698