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)); |