| Index: components/autofill/content/renderer/password_autofill_agent.cc
|
| diff --git a/components/autofill/content/renderer/password_autofill_agent.cc b/components/autofill/content/renderer/password_autofill_agent.cc
|
| index 3f2ed68110e57c39efb39b73c59012ada59c2784..137247bc3d5fb6434906a670008aa91b1291238f 100644
|
| --- a/components/autofill/content/renderer/password_autofill_agent.cc
|
| +++ b/components/autofill/content/renderer/password_autofill_agent.cc
|
| @@ -1067,9 +1067,12 @@ bool PasswordAutofillAgent::ShowSuggestionPopup(
|
| bounding_box.y() * scale,
|
| bounding_box.width() * scale,
|
| bounding_box.height() * scale);
|
| + int options = 0;
|
| + if (show_all)
|
| + options |= ShowPasswordSuggestionsOptions::SHOW_ALL;
|
| Send(new AutofillHostMsg_ShowPasswordSuggestions(
|
| routing_id(), key_it->second, field.text_direction, user_input.value(),
|
| - show_all, bounding_box_scaled));
|
| + options, bounding_box_scaled));
|
|
|
| bool suggestions_present = false;
|
| if (GetSuggestionsStats(fill_data, user_input.value(), show_all,
|
|
|