| Index: content/browser/download/mock_download_manager.h
|
| diff --git a/content/browser/download/mock_download_manager.h b/content/browser/download/mock_download_manager.h
|
| index ed4f6afaf85f5b6d36840e865895fda8a0270d8f..d7a1f2b713a198ec470975671c92279a79abf004 100644
|
| --- a/content/browser/download/mock_download_manager.h
|
| +++ b/content/browser/download/mock_download_manager.h
|
| @@ -30,12 +30,16 @@ class MockDownloadManager : public content::DownloadManager {
|
| DownloadVector* result) OVERRIDE;
|
| virtual bool Init(content::BrowserContext* browser_context) OVERRIDE;
|
| virtual void StartDownload(int32 id) OVERRIDE;
|
| - virtual void UpdateDownload(int32 download_id, int64 bytes_so_far,
|
| - int64 bytes_per_sec) OVERRIDE;
|
| + virtual void UpdateDownload(int32 download_id,
|
| + int64 bytes_so_far,
|
| + int64 bytes_per_sec,
|
| + std::string hash_state) OVERRIDE;
|
| virtual void OnResponseCompleted(int32 download_id, int64 size,
|
| const std::string& hash) OVERRIDE;
|
| virtual void CancelDownload(int32 download_id) OVERRIDE;
|
| - virtual void OnDownloadInterrupted(int32 download_id, int64 size,
|
| + virtual void OnDownloadInterrupted(int32 download_id,
|
| + int64 size,
|
| + std::string hash_state,
|
| InterruptReason reason) OVERRIDE;
|
| virtual void OnDownloadRenamedToFinalName(int download_id,
|
| const FilePath& full_path,
|
|
|