| Index: components/password_manager/core/browser/form_saver_impl.h
|
| diff --git a/components/password_manager/core/browser/form_saver_impl.h b/components/password_manager/core/browser/form_saver_impl.h
|
| index 7fac37f38d60a6f90a239729609c631b5b03909d..6aa9f1ba8e1d87d28bc31e928a3236a27bce161b 100644
|
| --- a/components/password_manager/core/browser/form_saver_impl.h
|
| +++ b/components/password_manager/core/browser/form_saver_impl.h
|
| @@ -28,11 +28,10 @@ class FormSaverImpl : public FormSaver {
|
| void Save(const autofill::PasswordForm& pending,
|
| const autofill::PasswordFormMap& best_matches,
|
| const autofill::PasswordForm* old_primary_key) override;
|
| - void Update(
|
| - const autofill::PasswordForm& pending,
|
| - const autofill::PasswordFormMap& best_matches,
|
| - const std::vector<const autofill::PasswordForm*>* credentials_to_update,
|
| - const autofill::PasswordForm* old_primary_key) override;
|
| + void Update(const autofill::PasswordForm& pending,
|
| + const autofill::PasswordFormMap& best_matches,
|
| + const std::vector<autofill::PasswordForm>* credentials_to_update,
|
| + const autofill::PasswordForm* old_primary_key) override;
|
| void PresaveGeneratedPassword(
|
| const autofill::PasswordForm& generated) override;
|
| void RemovePresavedPassword() override;
|
| @@ -48,7 +47,7 @@ class FormSaverImpl : public FormSaver {
|
| const autofill::PasswordForm& pending,
|
| bool is_new_login,
|
| const autofill::PasswordFormMap& best_matches,
|
| - const std::vector<const autofill::PasswordForm*>* credentials_to_update,
|
| + const std::vector<autofill::PasswordForm>* credentials_to_update,
|
| const autofill::PasswordForm* old_primary_key);
|
|
|
| // Marks all of |best_matches_| as not preferred unless the username is
|
|
|