| 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 1281e7a1ffa6298e99ea1c34b278b05258c3129a..aef42e4a182829688aaba5dff0b466e9042f2eb8 100644
|
| --- a/content/browser/download/download_item_impl.cc
|
| +++ b/content/browser/download/download_item_impl.cc
|
| @@ -265,12 +265,15 @@ DownloadItemImpl::DownloadItemImpl(Delegate* delegate,
|
| const GURL& url,
|
| bool is_otr,
|
| DownloadId download_id,
|
| + const std::string& mime_type,
|
| const net::BoundNetLog& bound_net_log)
|
| : request_handle_(new NullDownloadRequestHandle()),
|
| download_id_(download_id),
|
| full_path_(path),
|
| url_chain_(1, url),
|
| referrer_url_(GURL()),
|
| + mime_type_(mime_type),
|
| + original_mime_type_(mime_type),
|
| total_bytes_(0),
|
| received_bytes_(0),
|
| bytes_per_sec_(0),
|
|
|