| Index: chrome/browser/password_manager/update_password_infobar_delegate_android.cc
|
| diff --git a/chrome/browser/password_manager/update_password_infobar_delegate_android.cc b/chrome/browser/password_manager/update_password_infobar_delegate_android.cc
|
| index c9cd572811994428d47254291f51be4f9e8893d0..b42c77ce2309ce20449580ec6a280568b8c97e49 100644
|
| --- a/chrome/browser/password_manager/update_password_infobar_delegate_android.cc
|
| +++ b/chrome/browser/password_manager/update_password_infobar_delegate_android.cc
|
| @@ -29,10 +29,10 @@ void UpdatePasswordInfoBarDelegate::Create(
|
| ProfileSyncServiceFactory::GetForProfile(
|
| Profile::FromBrowserContext(web_contents->GetBrowserContext())));
|
| InfoBarService::FromWebContents(web_contents)
|
| - ->AddInfoBar(base::WrapUnique(new UpdatePasswordInfoBar(
|
| + ->AddInfoBar(base::MakeUnique<UpdatePasswordInfoBar>(
|
| base::WrapUnique(new UpdatePasswordInfoBarDelegate(
|
| web_contents, std::move(form_to_save),
|
| - is_smartlock_branding_enabled)))));
|
| + is_smartlock_branding_enabled))));
|
| }
|
|
|
| UpdatePasswordInfoBarDelegate::~UpdatePasswordInfoBarDelegate() {}
|
|
|