| Index: components/password_manager/core/browser/export/password_exporter.cc
|
| diff --git a/components/password_manager/core/browser/export/password_exporter.cc b/components/password_manager/core/browser/export/password_exporter.cc
|
| index 01a4e019587b6533c312ae53748d35a26d647c12..e95fd85d1731eab9410d209a5069ec3b71f28672 100644
|
| --- a/components/password_manager/core/browser/export/password_exporter.cc
|
| +++ b/components/password_manager/core/browser/export/password_exporter.cc
|
| @@ -33,8 +33,8 @@ void PasswordExporter::Export(
|
| blocking_task_runner->PostTask(
|
| FROM_HERE,
|
| base::Bind(&WriteToFile, path,
|
| - base::Passed(base::WrapUnique(new std::string(
|
| - PasswordCSVWriter::SerializePasswords(passwords))))));
|
| + base::Passed(base::MakeUnique<std::string>(
|
| + PasswordCSVWriter::SerializePasswords(passwords)))));
|
| }
|
|
|
| // static
|
|
|