| 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 cb57ddd3b2d5328fdc178862a9c16e993a728223..10c81beaa58a3ed2bbc2b03a803d5bfa6992ce67 100644
|
| --- a/content/public/test/mock_download_manager.h
|
| +++ b/content/public/test/mock_download_manager.h
|
| @@ -59,8 +59,16 @@ class MockDownloadManager : public DownloadManager {
|
| }
|
| MOCK_METHOD1(AddObserver, void(Observer* observer));
|
| MOCK_METHOD1(RemoveObserver, void(Observer* observer));
|
| - MOCK_METHOD1(OnPersistentStoreQueryComplete, void(
|
| - std::vector<DownloadPersistentStoreInfo>* entries));
|
| + MOCK_METHOD9(CreateDownloadItem, DownloadItem*(
|
| + const FilePath& path,
|
| + const GURL& url,
|
| + const GURL& referrer_url,
|
| + const base::Time& start_tiem,
|
| + const base::Time& end_time,
|
| + int64 received_bytes,
|
| + int64 total_bytes,
|
| + DownloadItem::DownloadState state,
|
| + bool opened));
|
| MOCK_METHOD2(OnItemAddedToPersistentStore, void(int32 download_id,
|
| int64 db_handle));
|
| MOCK_CONST_METHOD0(InProgressCount, int());
|
|
|