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

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

Issue 2900693002: [Password Manager] Convert |pending_login_managers_| to an array of scoped_refptr (Closed)
Patch Set: Rebase Created 3 years, 7 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 3d9317422e754c2b34987c329b87f603f85b3f89..47bfb4dcbc92f3af4ce953f49558ce8eb701e397 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 @@ class IOSChromeSavePasswordInfoBarDelegate
static void Create(
bool is_smart_lock_branding_enabled,
infobars::InfoBarManager* infobar_manager,
- std::unique_ptr<password_manager::PasswordFormManager> form_to_save);
+ scoped_refptr<password_manager::PasswordFormManager> form_to_save);
~IOSChromeSavePasswordInfoBarDelegate() override;
private:
IOSChromeSavePasswordInfoBarDelegate(
bool is_smart_lock_branding_enabled,
- std::unique_ptr<password_manager::PasswordFormManager> form_to_save);
+ scoped_refptr<password_manager::PasswordFormManager> form_to_save);
// ConfirmInfoBarDelegate implementation.
infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;

Powered by Google App Engine
This is Rietveld 408576698