diff options
Diffstat (limited to 'content/shell')
-rw-r--r-- | content/shell/shell_download_manager_delegate.cc | 4 | ||||
-rw-r--r-- | content/shell/shell_download_manager_delegate.h | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/content/shell/shell_download_manager_delegate.cc b/content/shell/shell_download_manager_delegate.cc index 0118914..718ae3b4 100644 --- a/content/shell/shell_download_manager_delegate.cc +++ b/content/shell/shell_download_manager_delegate.cc @@ -164,9 +164,7 @@ bool ShellDownloadManagerDelegate::GenerateFileHash() { return false; } -void ShellDownloadManagerDelegate::OnResponseCompleted( - DownloadItem* item, - const std::string& hash) { +void ShellDownloadManagerDelegate::OnResponseCompleted(DownloadItem* item) { } void ShellDownloadManagerDelegate::AddItemToPersistentStore( diff --git a/content/shell/shell_download_manager_delegate.h b/content/shell/shell_download_manager_delegate.h index 8dda1c8..55b4416 100644 --- a/content/shell/shell_download_manager_delegate.h +++ b/content/shell/shell_download_manager_delegate.h @@ -35,8 +35,7 @@ class ShellDownloadManagerDelegate virtual bool ShouldCompleteDownload(DownloadItem* item) OVERRIDE; virtual bool ShouldOpenDownload(DownloadItem* item) OVERRIDE; virtual bool GenerateFileHash() OVERRIDE; - virtual void OnResponseCompleted(DownloadItem* item, - const std::string& hash) OVERRIDE; + virtual void OnResponseCompleted(DownloadItem* item) OVERRIDE; virtual void AddItemToPersistentStore(DownloadItem* item) OVERRIDE; virtual void UpdateItemInPersistentStore(DownloadItem* item) OVERRIDE; virtual void UpdatePathForItemInPersistentStore( |