| Index: components/password_manager/core/browser/password_autofill_manager.cc
|
| diff --git a/components/password_manager/core/browser/password_autofill_manager.cc b/components/password_manager/core/browser/password_autofill_manager.cc
|
| index 810e09dce70cf105a5d806d2fbf07792b81734c0..46ffc479c5e5ffdeafea44f6f30ac91117789232 100644
|
| --- a/components/password_manager/core/browser/password_autofill_manager.cc
|
| +++ b/components/password_manager/core/browser/password_autofill_manager.cc
|
| @@ -15,6 +15,8 @@
|
| #include "components/autofill/core/common/autofill_data_validation.h"
|
| #include "components/password_manager/core/browser/password_manager_client.h"
|
| #include "components/password_manager/core/browser/password_manager_driver.h"
|
| +#include "components/strings/grit/components_strings.h"
|
| +#include "ui/base/l10n/l10n_util.h"
|
|
|
| namespace password_manager {
|
|
|
| @@ -108,8 +110,18 @@ void PasswordAutofillManager::OnShowPasswordSuggestions(
|
| int key,
|
| base::i18n::TextDirection text_direction,
|
| const base::string16& typed_username,
|
| - bool show_all,
|
| + int options,
|
| const gfx::RectF& bounds) {
|
| + bool show_all =
|
| + (options & autofill::ShowPasswordSuggestionsOptions::SHOW_ALL);
|
| + bool is_password_field =
|
| + (options & autofill::ShowPasswordSuggestionsOptions::IS_PASSWORD_FIELD);
|
| + base::string16 title;
|
| + if (is_password_field) {
|
| + title = l10n_util::GetStringUTF16(
|
| + IDS_AUTOFILL_PASSWORD_FIELD_SUGGESTIONS_TITLE);
|
| + }
|
| +
|
| std::vector<base::string16> suggestions;
|
| std::vector<base::string16> realms;
|
| LoginToPasswordInfoMap::const_iterator fill_data_it =
|
| @@ -133,6 +145,12 @@ void PasswordAutofillManager::OnShowPasswordSuggestions(
|
| std::vector<base::string16> empty(suggestions.size());
|
| std::vector<int> password_ids(suggestions.size(),
|
| autofill::POPUP_ITEM_ID_PASSWORD_ENTRY);
|
| + if (!title.empty()) {
|
| + suggestions.insert(suggestions.begin(), title);
|
| + realms.insert(realms.begin(), base::string16());
|
| + empty.insert(empty.begin(), base::string16());
|
| + password_ids.insert(password_ids.begin(), autofill::POPUP_ITEM_ID_TITLE);
|
| + }
|
| autofill_client_->ShowAutofillPopup(bounds,
|
| text_direction,
|
| suggestions,
|
|
|