Chromium Code Reviews| 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 c3d31194af18f77940b72b1a2d80afaaca7890d5..44d19c03fe95637ec6b017a51f01d23ba68a123f 100644 |
| --- a/content/browser/download/download_item_impl.h |
| +++ b/content/browser/download/download_item_impl.h |
| @@ -245,17 +245,14 @@ class CONTENT_EXPORT DownloadItemImpl : public content::DownloadItem { |
| // Full path to the downloaded or downloading file. |
| FilePath full_path_; |
| - // A number that should be appended to the path to make it unique, or 0 if the |
| - // path should be used as is. |
| - int path_uniquifier_; |
| - |
| // The chain of redirects that leading up to and including the final URL. |
| std::vector<GURL> url_chain_; |
| // The URL of the page that initiated the download. |
| GURL referrer_url_; |
| - // Suggested filename in 'download' attribute of an anchor. Details: |
| + // Filename suggestion from DownloadSaveInfo. It could, among others, be the |
| + // suggested filename in 'download' attribute of an anchor. Details: |
|
Randy Smith (Not in Mondays)
2012/02/08 18:53:54
Just for my curiosity--are you familiar with the c
asanka
2012/02/08 19:02:43
This is in RenderMessageFilter::OnDownloadUrl() (c
|
| // http://www.whatwg.org/specs/web-apps/current-work/#downloading-hyperlinks |
| std::string suggested_filename_; |
| @@ -360,8 +357,7 @@ class CONTENT_EXPORT DownloadItemImpl : public content::DownloadItem { |
| // be treated as though the user opened it. |
| bool opened_; |
| - // Do we actual open downloads when requested? For testing purposes |
| - // only. |
| + // Do we actually open downloads when requested? For testing purposes only. |
| bool open_enabled_; |
| // Did the delegate delay calling Complete on this download? |