| Index: components/password_manager/core/browser/login_database.cc
|
| diff --git a/components/password_manager/core/browser/login_database.cc b/components/password_manager/core/browser/login_database.cc
|
| index 897c155f69428e4f9db186137f7517e864128bff..0cc76ff353d7e289c6516e5d8be8550bb6b9061a 100644
|
| --- a/components/password_manager/core/browser/login_database.cc
|
| +++ b/components/password_manager/core/browser/login_database.cc
|
| @@ -1318,7 +1318,7 @@ bool LoginDatabase::StatementToForms(
|
|
|
| forms->clear();
|
| while (statement->Step()) {
|
| - scoped_ptr<PasswordForm> new_form(new PasswordForm());
|
| + std::unique_ptr<PasswordForm> new_form(new PasswordForm());
|
| EncryptionResult result =
|
| InitPasswordFormFromStatement(new_form.get(), *statement);
|
| if (result == ENCRYPTION_RESULT_SERVICE_FAILURE)
|
|
|