| Index: content/browser/download/mock_download_file.h
|
| diff --git a/content/browser/download/mock_download_file.h b/content/browser/download/mock_download_file.h
|
| index f89643c468fb80fb71eed6df10b2ae8963ab1469..4a2a5ef4438f15d4722a67abef4b88ec9ffbd952 100644
|
| --- a/content/browser/download/mock_download_file.h
|
| +++ b/content/browser/download/mock_download_file.h
|
| @@ -62,7 +62,7 @@ class MockDownloadFile : virtual public content::DownloadFile {
|
| virtual ~MockDownloadFile();
|
|
|
| // DownloadFile functions.
|
| - virtual net::Error Initialize(bool calculate_hash) OVERRIDE;
|
| + virtual net::Error Initialize() OVERRIDE;
|
| virtual net::Error AppendDataToFile(const char* data,
|
| size_t data_len) OVERRIDE;
|
| virtual net::Error Rename(const FilePath& full_path) OVERRIDE;
|
| @@ -74,7 +74,8 @@ class MockDownloadFile : virtual public content::DownloadFile {
|
| virtual bool InProgress() const OVERRIDE;
|
| virtual int64 BytesSoFar() const OVERRIDE;
|
| virtual int64 CurrentSpeed() const OVERRIDE;
|
| - virtual bool GetSha256Hash(std::string* hash) OVERRIDE;
|
| + virtual bool GetHash(std::string* hash) OVERRIDE;
|
| + virtual std::string GetHashState() OVERRIDE;
|
| virtual void CancelDownloadRequest() OVERRIDE;
|
| virtual int Id() const OVERRIDE;
|
| virtual content::DownloadManager* GetDownloadManager() OVERRIDE;
|
|
|