| Index: chrome/browser/ui/views/infobars/infobar_view.cc
|
| ===================================================================
|
| --- chrome/browser/ui/views/infobars/infobar_view.cc (revision 107928)
|
| +++ chrome/browser/ui/views/infobars/infobar_view.cc (working copy)
|
| @@ -94,6 +94,7 @@
|
| link->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
|
| link->set_listener(listener);
|
| link->SetBackgroundColor(background()->get_color());
|
| + link->set_focusable(true);
|
| return link;
|
| }
|
|
|
| @@ -112,6 +113,7 @@
|
| menu_button->SetHighlightColor(SK_ColorBLACK);
|
| menu_button->SetHoverColor(SK_ColorBLACK);
|
| menu_button->SetFont(rb.GetFont(ResourceBundle::MediumFont));
|
| + menu_button->set_focusable(true);
|
| return menu_button;
|
| }
|
|
|
| @@ -151,6 +153,7 @@
|
| }
|
| }
|
| #endif
|
| + text_button->set_focusable(true);
|
| return text_button;
|
| }
|
|
|
|
|