| Index: content/browser/download/base_file.cc
|
| diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc
|
| index b90ba7481cbfa37af336e8b790a78cdc50559b5b..7bd2b0bcabf5526705630ec445ce6b819a80228a 100644
|
| --- a/content/browser/download/base_file.cc
|
| +++ b/content/browser/download/base_file.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/download/base_file.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/files/file.h"
|
| #include "base/files/file_util.h"
|
| @@ -37,7 +39,7 @@ BaseFile::BaseFile(const base::FilePath& full_path,
|
| : full_path_(full_path),
|
| source_url_(source_url),
|
| referrer_url_(referrer_url),
|
| - file_(file.Pass()),
|
| + file_(std::move(file)),
|
| bytes_so_far_(received_bytes),
|
| start_tick_(base::TimeTicks::Now()),
|
| calculate_hash_(calculate_hash),
|
|
|