| Index: content/browser/download/download_item_impl.cc
|
| diff --git a/content/browser/download/download_item_impl.cc b/content/browser/download/download_item_impl.cc
|
| index d0984add840f7819230ee1b52fbbf8977952da43..8ab5872cd5ee8a3e3345a72d136fcd4490d790a0 100644
|
| --- a/content/browser/download/download_item_impl.cc
|
| +++ b/content/browser/download/download_item_impl.cc
|
| @@ -183,8 +183,8 @@ DownloadItemImpl::DownloadItemImpl(
|
| TARGET_DISPOSITION_PROMPT : TARGET_DISPOSITION_OVERWRITE),
|
| url_chain_(info.url_chain),
|
| referrer_url_(info.referrer_url),
|
| - suggested_filename_(UTF16ToUTF8(info.save_info.suggested_name)),
|
| - forced_file_path_(info.save_info.file_path),
|
| + suggested_filename_(UTF16ToUTF8(info.save_info->suggested_name)),
|
| + forced_file_path_(info.save_info->file_path),
|
| transition_type_(info.transition_type),
|
| has_user_gesture_(info.has_user_gesture),
|
| content_disposition_(info.content_disposition),
|
| @@ -208,7 +208,7 @@ DownloadItemImpl::DownloadItemImpl(
|
| safety_state_(SAFE),
|
| auto_opened_(false),
|
| is_persisted_(false),
|
| - is_temporary_(!info.save_info.file_path.empty()),
|
| + is_temporary_(!info.save_info->file_path.empty()),
|
| all_data_saved_(false),
|
| opened_(false),
|
| open_enabled_(true),
|
|
|