Chromium Code Reviews| Index: content/browser/download/download_types.h |
| diff --git a/content/browser/download/download_types.h b/content/browser/download/download_types.h |
| index f0153a58a74dd107b52cdd40b159aa8ccab76b81..e3ef2982a337d5691ffb9fd9c832359b49792b84 100644 |
| --- a/content/browser/download/download_types.h |
| +++ b/content/browser/download/download_types.h |
| @@ -18,9 +18,18 @@ struct CONTENT_EXPORT DownloadSaveInfo { |
| ~DownloadSaveInfo(); |
| DownloadSaveInfo& operator=(const DownloadSaveInfo& info); |
| + // This is usually the tentative final name, but not during resumption. |
|
Randy Smith (Not in Mondays)
2011/11/22 17:37:49
nit: Specify what it is during resumption.
ahendrickson
2011/11/22 23:46:44
Done.
|
| FilePath file_path; |
| + |
| linked_ptr<net::FileStream> file_stream; |
| + |
| string16 suggested_name; |
| + |
| + // The file offset at which to start the download. May be 0. |
| + size_t offset; |
| + |
| + // The state of the hash at the start of the download. May be empty. |
| + std::string hash_state; |
| }; |
| #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_TYPES_H_ |