| 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 2f967a89daba0dc13f452a1b71519c087647b0f9..90dc34a837f8cac6fe78a2f48e5e2013d2fcea20 100644
|
| --- a/content/browser/download/download_item_impl.cc
|
| +++ b/content/browser/download/download_item_impl.cc
|
| @@ -209,10 +209,10 @@ DownloadItemImpl::DownloadItemImpl(Delegate* delegate,
|
| DownloadItemImpl::DownloadItemImpl(
|
| Delegate* delegate,
|
| const DownloadCreateInfo& info,
|
| - DownloadRequestHandleInterface* request_handle,
|
| + scoped_ptr<DownloadRequestHandleInterface> request_handle,
|
| bool is_otr,
|
| const net::BoundNetLog& bound_net_log)
|
| - : request_handle_(request_handle),
|
| + : request_handle_(request_handle.Pass()),
|
| download_id_(info.download_id),
|
| target_disposition_(
|
| (info.prompt_user_for_save_location) ?
|
|
|