Index: chrome/browser/ui/views/passwords/credentials_item_view.cc |
diff --git a/chrome/browser/ui/views/passwords/credentials_item_view.cc b/chrome/browser/ui/views/passwords/credentials_item_view.cc |
index 42d5c7856f7b35ba095c491ddfb8e238429070c9..c6a5e175f840cf92c771bba3e2ae3776cc58e576 100644 |
--- a/chrome/browser/ui/views/passwords/credentials_item_view.cc |
+++ b/chrome/browser/ui/views/passwords/credentials_item_view.cc |
@@ -19,6 +19,7 @@ |
#include "ui/views/controls/image_view.h" |
#include "ui/views/controls/label.h" |
#include "ui/views/layout/layout_constants.h" |
+#include "ui/views/style/platform_style.h" |
namespace { |
// The default spacing between the icon and text. |
@@ -105,7 +106,8 @@ CredentialsItemView::CredentialsItemView( |
AddChildView(lower_label_); |
} |
- SetFocusable(true); |
+ views::PlatformStyle::ConfigureFocus( |
+ views::PlatformStyle::CONTROL::CREDENTIALS_ITEM_VIEW, this); |
} |
CredentialsItemView::~CredentialsItemView() = default; |