| Index: chrome/browser/password_manager/native_backend_libsecret.cc
|
| diff --git a/chrome/browser/password_manager/native_backend_libsecret.cc b/chrome/browser/password_manager/native_backend_libsecret.cc
|
| index 899e77d5dd6fa2cb3067ebcfe0a858d358ef4806..f31f3d1e2d3f1b31da2d2f63951cf7b3d565c4b9 100644
|
| --- a/chrome/browser/password_manager/native_backend_libsecret.cc
|
| +++ b/chrome/browser/password_manager/native_backend_libsecret.cc
|
| @@ -287,7 +287,7 @@ bool NativeBackendLibsecret::DisableAutoSignInForOrigins(
|
| if (!GetLoginsList(nullptr, ALL_LOGINS, &all_forms))
|
| return false;
|
|
|
| - for (auto& form : all_forms) {
|
| + for (auto* form : all_forms) {
|
| if (origin_filter.Run(form->origin) && !form->skip_zero_click) {
|
| form->skip_zero_click = true;
|
| if (!UpdateLogin(*form, changes))
|
| @@ -469,7 +469,7 @@ bool NativeBackendLibsecret::GetLoginsBetween(
|
| date_to_compare == CREATION_TIMESTAMP
|
| ? &autofill::PasswordForm::date_created
|
| : &autofill::PasswordForm::date_synced;
|
| - for (auto& saved_form : all_forms) {
|
| + for (auto*& saved_form : all_forms) {
|
| if (get_begin <= saved_form->*date_member &&
|
| (get_end.is_null() || saved_form->*date_member < get_end)) {
|
| forms->push_back(saved_form);
|
|
|