| Index: chrome/browser/download/download_item.h
|
| diff --git a/chrome/browser/download/download_item.h b/chrome/browser/download/download_item.h
|
| index aafab618660ffba44e9cfa8be88381a38501bcf3..199e05cad16d6b980ed9d43f01359e6b934a90a9 100644
|
| --- a/chrome/browser/download/download_item.h
|
| +++ b/chrome/browser/download/download_item.h
|
| @@ -156,13 +156,16 @@ class DownloadItem {
|
| // when resuming a download (assuming the server supports byte ranges).
|
| void Cancel(bool update_history);
|
|
|
| - // Called when all data has been saved. Only has display effects.
|
| - void OnAllDataSaved(int64 size);
|
| -
|
| // Called by external code (SavePackage) using the DownloadItem interface
|
| // to display progress when the DownloadItem should be considered complete.
|
| void MarkAsComplete();
|
|
|
| + // Called when all data has been saved. Only has display effects.
|
| + void OnAllDataSaved(int64 size);
|
| +
|
| + // Called when the downloaded file is removed.
|
| + void OnDownloadedFileRemoved();
|
| +
|
| // Download operation had an error.
|
| // |size| is the amount of data received so far, and |os_error| is the error
|
| // code that the operation received.
|
| @@ -259,6 +262,7 @@ class DownloadItem {
|
| void set_open_when_complete(bool open) { open_when_complete_ = open; }
|
| int render_process_id() const { return render_process_id_; }
|
| int request_id() const { return request_id_; }
|
| + bool file_externally_removed() const { return file_externally_removed_; }
|
| SafetyState safety_state() const { return safety_state_; }
|
| void set_safety_state(SafetyState safety_state) {
|
| safety_state_ = safety_state;
|
| @@ -365,6 +369,9 @@ class DownloadItem {
|
| // A flag for indicating if the download should be opened at completion.
|
| bool open_when_complete_;
|
|
|
| + // A flag for indicating if the downloaded file is externally removed.
|
| + bool file_externally_removed_;
|
| +
|
| // Whether the download is considered potentially safe or dangerous
|
| // (executable files are typically considered dangerous).
|
| SafetyState safety_state_;
|
|
|