diff options
Diffstat (limited to 'content/browser/download/download_create_info.cc')
-rw-r--r-- | content/browser/download/download_create_info.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/download/download_create_info.cc b/content/browser/download/download_create_info.cc index f263d75..c09d713 100644 --- a/content/browser/download/download_create_info.cc +++ b/content/browser/download/download_create_info.cc @@ -5,6 +5,7 @@ #include "content/browser/download/download_create_info.h" #include <string> +#include <utility> #include "base/format_macros.h" #include "base/strings/stringprintf.h" @@ -20,7 +21,7 @@ DownloadCreateInfo::DownloadCreateInfo(const base::Time& start_time, download_id(DownloadItem::kInvalidId), has_user_gesture(false), transition_type(ui::PAGE_TRANSITION_LINK), - save_info(save_info.Pass()), + save_info(std::move(save_info)), request_bound_net_log(bound_net_log) {} DownloadCreateInfo::DownloadCreateInfo() |