Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.h

Issue 2926833002: Revert of [Password Manager] Convert |pending_login_managers_| to an array of scoped_refptr (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.h
diff --git a/ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.h b/ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.h
index 47bfb4dcbc92f3af4ce953f49558ce8eb701e397..3d9317422e754c2b34987c329b87f603f85b3f89 100644
--- a/ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.h
+++ b/ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.h
@@ -30,14 +30,14 @@
static void Create(
bool is_smart_lock_branding_enabled,
infobars::InfoBarManager* infobar_manager,
- scoped_refptr<password_manager::PasswordFormManager> form_to_save);
+ std::unique_ptr<password_manager::PasswordFormManager> form_to_save);
~IOSChromeSavePasswordInfoBarDelegate() override;
private:
IOSChromeSavePasswordInfoBarDelegate(
bool is_smart_lock_branding_enabled,
- scoped_refptr<password_manager::PasswordFormManager> form_to_save);
+ std::unique_ptr<password_manager::PasswordFormManager> form_to_save);
// ConfirmInfoBarDelegate implementation.
infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;

Powered by Google App Engine
This is Rietveld 408576698