| Index: content/browser/download/download_create_info.h
|
| diff --git a/content/browser/download/download_create_info.h b/content/browser/download/download_create_info.h
|
| index 79a3dbd62d654d0f65a8bdab0272f5f6eae8d3f4..86ca8d4f67aed59251c8514d5387eaabb2d50b3f 100644
|
| --- a/content/browser/download/download_create_info.h
|
| +++ b/content/browser/download/download_create_info.h
|
| @@ -23,9 +23,7 @@
|
| // Used for informing the download manager of a new download, since we don't
|
| // want to pass |DownloadItem|s between threads.
|
| struct CONTENT_EXPORT DownloadCreateInfo {
|
| - DownloadCreateInfo(const FilePath& path,
|
| - const GURL& url,
|
| - const base::Time& start_time,
|
| + DownloadCreateInfo(const base::Time& start_time,
|
| int64 received_bytes,
|
| int64 total_bytes,
|
| int32 state,
|
| @@ -41,10 +39,6 @@ struct CONTENT_EXPORT DownloadCreateInfo {
|
| // redirection by the server for |url_chain|.
|
| const GURL& url() const;
|
|
|
| - // DownloadItem fields
|
| - // The path where we want to save the download file.
|
| - FilePath path;
|
| -
|
| // The chain of redirects that leading up to and including the final URL.
|
| std::vector<GURL> url_chain;
|
|
|
| @@ -99,9 +93,6 @@ struct CONTENT_EXPORT DownloadCreateInfo {
|
| // default location.
|
| bool prompt_user_for_save_location;
|
|
|
| - // The original name for a dangerous download.
|
| - FilePath original_name;
|
| -
|
| // The charset of the referring page where the download request comes from.
|
| // It's used to construct a suggested filename.
|
| std::string referrer_charset;
|
|
|