| Index: chrome/browser/ui/views/passwords/manage_password_item_view.cc
|
| diff --git a/chrome/browser/ui/views/passwords/manage_password_item_view.cc b/chrome/browser/ui/views/passwords/manage_password_item_view.cc
|
| index 647ce0a2b702fcca85e7c410d342c4c55ad70651..fcd24d5f864e974fd8245bedf7e9ea43718244fc 100644
|
| --- a/chrome/browser/ui/views/passwords/manage_password_item_view.cc
|
| +++ b/chrome/browser/ui/views/passwords/manage_password_item_view.cc
|
| @@ -107,12 +107,16 @@ ManagePasswordItemView::UndoView::UndoView(ManagePasswordItemView* parent)
|
| views::Label* text =
|
| new views::Label(l10n_util::GetStringUTF16(IDS_MANAGE_PASSWORDS_DELETED));
|
| text->SetHorizontalAlignment(gfx::ALIGN_LEFT);
|
| + text->SetFontList(ui::ResourceBundle::GetSharedInstance().GetFontList(
|
| + ui::ResourceBundle::SmallFont));
|
|
|
| undo_link_ =
|
| new views::Link(l10n_util::GetStringUTF16(IDS_MANAGE_PASSWORDS_UNDO));
|
| undo_link_->SetHorizontalAlignment(gfx::ALIGN_RIGHT);
|
| undo_link_->set_listener(this);
|
| undo_link_->SetUnderline(false);
|
| + undo_link_->SetFontList(ui::ResourceBundle::GetSharedInstance().GetFontList(
|
| + ui::ResourceBundle::SmallFont));
|
|
|
| parent->BuildColumnSet(layout, TWO_COLUMN_SET);
|
| layout->StartRowWithPadding(
|
|
|