| Index: content/browser/download/download_item_impl.h
|
| diff --git a/content/browser/download/download_item_impl.h b/content/browser/download/download_item_impl.h
|
| index 31c3b0dbb098b0dd1021f58f61f4869231ef6206..f8f6cbc37278085ff04d2db8832c78692ec9c8af 100644
|
| --- a/content/browser/download/download_item_impl.h
|
| +++ b/content/browser/download/download_item_impl.h
|
| @@ -129,7 +129,7 @@ class CONTENT_EXPORT DownloadItemImpl
|
| virtual const std::string& GetHash() const OVERRIDE;
|
| virtual const std::string& GetHashState() const OVERRIDE;
|
| virtual bool GetFileExternallyRemoved() const OVERRIDE;
|
| - virtual void DeleteFile() OVERRIDE;
|
| + virtual void DeleteFile(const base::Callback<void(bool)>& callback) OVERRIDE;
|
| virtual bool IsDangerous() const OVERRIDE;
|
| virtual DownloadDangerType GetDangerType() const OVERRIDE;
|
| virtual bool TimeRemaining(base::TimeDelta* remaining) const OVERRIDE;
|
| @@ -184,7 +184,7 @@ class CONTENT_EXPORT DownloadItemImpl
|
| // Notify observers that this item is being removed by the user.
|
| virtual void NotifyRemoved();
|
|
|
| - virtual void OnDownloadedFileRemoved(bool success);
|
| + virtual void OnDownloadedFileRemoved();
|
|
|
| // Provide a weak pointer reference to a DownloadDestinationObserver
|
| // for use by download destinations.
|
|
|