| 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 2f6b380032a14cd88d5becb0f27bee6ab23117ef..5542e2eef0f4cece91ba3d920ac8eda0d3348eef 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),
|
|
|