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 0fbd270da05ce3e4bd8dc147d627c55afa3e127d..433ac78f48bc39b49a0c48bac45d3cfaad636939 100644 |
--- a/content/browser/download/download_item_impl.cc |
+++ b/content/browser/download/download_item_impl.cc |
@@ -113,6 +113,8 @@ DownloadItemImpl::DownloadItemImpl(DownloadItemImplDelegate* delegate, |
const base::FilePath& target_path, |
const std::vector<GURL>& url_chain, |
const GURL& referrer_url, |
+ const std::string& mime_type, |
+ const std::string& original_mime_type, |
const base::Time& start_time, |
const base::Time& end_time, |
const std::string& etag, |
@@ -133,6 +135,8 @@ DownloadItemImpl::DownloadItemImpl(DownloadItemImplDelegate* delegate, |
referrer_url_(referrer_url), |
transition_type_(PAGE_TRANSITION_LINK), |
has_user_gesture_(false), |
+ mime_type_(mime_type), |
+ original_mime_type_(original_mime_type), |
total_bytes_(total_bytes), |
received_bytes_(received_bytes), |
bytes_per_sec_(0), |