| Index: chrome/browser/ui/views/passwords/manage_password_items_view.cc
|
| diff --git a/chrome/browser/ui/views/passwords/manage_password_items_view.cc b/chrome/browser/ui/views/passwords/manage_password_items_view.cc
|
| index 8443799ace65850a97f9c961c84770ea61e63eef..e2a4d6ce13ec30a325559d159ac465ff18eefcd7 100644
|
| --- a/chrome/browser/ui/views/passwords/manage_password_items_view.cc
|
| +++ b/chrome/browser/ui/views/passwords/manage_password_items_view.cc
|
| @@ -79,7 +79,7 @@ std::unique_ptr<views::Label> GenerateUsernameLabel(
|
| std::unique_ptr<views::Label> GeneratePasswordLabel(
|
| const autofill::PasswordForm& form) {
|
| base::string16 text =
|
| - form.federation_origin.unique()
|
| + form.federation_origin.opaque()
|
| ? form.password_value
|
| : l10n_util::GetStringFUTF16(
|
| IDS_PASSWORDS_VIA_FEDERATION,
|
| @@ -88,7 +88,7 @@ std::unique_ptr<views::Label> GeneratePasswordLabel(
|
| label->SetFontList(ui::ResourceBundle::GetSharedInstance().GetFontList(
|
| ui::ResourceBundle::SmallFont));
|
| label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
|
| - if (form.federation_origin.unique())
|
| + if (form.federation_origin.opaque())
|
| label->SetObscured(true);
|
| return label;
|
| }
|
|
|