diff options
author | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 00:00:32 +0000 |
---|---|---|
committer | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 00:00:32 +0000 |
commit | 8af9d0341d6c00ee537adc089f938b120d1d8d34 (patch) | |
tree | 334fcf5a09c2b3e12face9d46ae4f25ee62921eb /chrome/browser/history | |
parent | 8d292399e6dcdfa776a1de94da07841bf1487f5b (diff) | |
download | chromium_src-8af9d0341d6c00ee537adc089f938b120d1d8d34.zip chromium_src-8af9d0341d6c00ee537adc089f938b120d1d8d34.tar.gz chromium_src-8af9d0341d6c00ee537adc089f938b120d1d8d34.tar.bz2 |
Refactor DragDownloadFile so that it can be used by both Windows and MacOSX.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/572014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history')
-rw-r--r-- | chrome/browser/history/download_types.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/history/download_types.h b/chrome/browser/history/download_types.h index 7025b1d..50c7e26 100644 --- a/chrome/browser/history/download_types.h +++ b/chrome/browser/history/download_types.h @@ -12,6 +12,7 @@ #include "base/basictypes.h" #include "base/file_path.h" #include "base/time.h" +#include "chrome/browser/download/download_file.h" #include "googleurl/src/gurl.h" // Used for informing the download database of a new download, where we don't @@ -87,8 +88,8 @@ struct DownloadCreateInfo { // The charset of the referring page where the download request comes from. // It's used to construct a suggested filename. std::string referrer_charset; - // The file path to save to. - FilePath save_file_path; + // The download file save info. + DownloadSaveInfo save_info; }; #endif // CHROME_BROWSER_HISTORY_DOWNLOAD_TYPES_H_ |