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

Unified Diff: chrome/browser/password_manager/update_password_infobar_delegate_android.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: chrome/browser/password_manager/update_password_infobar_delegate_android.h
diff --git a/chrome/browser/password_manager/update_password_infobar_delegate_android.h b/chrome/browser/password_manager/update_password_infobar_delegate_android.h
index 7bdf489e4419563ff262cb2bf5e643529a6d2536..04d701a939a73314b22efa4c9087949bdda3906b 100644
--- a/chrome/browser/password_manager/update_password_infobar_delegate_android.h
+++ b/chrome/browser/password_manager/update_password_infobar_delegate_android.h
@@ -26,7 +26,7 @@ class UpdatePasswordInfoBarDelegate : public PasswordManagerInfoBarDelegate {
public:
static void Create(
content::WebContents* web_contents,
- std::unique_ptr<password_manager::PasswordFormManager> form_to_update);
+ scoped_refptr<password_manager::PasswordFormManager> form_to_update);
~UpdatePasswordInfoBarDelegate() override;
@@ -54,7 +54,7 @@ class UpdatePasswordInfoBarDelegate : public PasswordManagerInfoBarDelegate {
private:
UpdatePasswordInfoBarDelegate(
content::WebContents* web_contents,
- std::unique_ptr<password_manager::PasswordFormManager> form_to_update,
+ scoped_refptr<password_manager::PasswordFormManager> form_to_update,
bool is_smartlock_branding_enabled);
// ConfirmInfoBarDelegate:

Powered by Google App Engine
This is Rietveld 408576698