| Index: chrome/browser/chromeos/ui/focus_ring_layer.cc
|
| diff --git a/chrome/browser/chromeos/ui/focus_ring_layer.cc b/chrome/browser/chromeos/ui/focus_ring_layer.cc
|
| index 303d5944f4be0ab33572a6064f8796b18f9c6f02..97b637d301c721b96de5f3993d14f8d38660b221 100644
|
| --- a/chrome/browser/chromeos/ui/focus_ring_layer.cc
|
| +++ b/chrome/browser/chromeos/ui/focus_ring_layer.cc
|
| @@ -82,15 +82,13 @@ void FocusRingLayer::SetForView(views::View* view) {
|
|
|
| // Workarounds for system tray items that have customized focus borders. The
|
| // insets here must be consistent with the ones used by those classes.
|
| - if (view->GetClassName() ==
|
| - ash::internal::ActionableView::kViewClassName) {
|
| + if (view->GetClassName() == ash::ActionableView::kViewClassName) {
|
| view_bounds = view->GetLocalBounds();
|
| view_bounds.Inset(1, 1, 3, 3);
|
| - } else if (view->GetClassName() ==
|
| - ash::internal::TrayBackgroundView::kViewClassName) {
|
| + } else if (view->GetClassName() == ash::TrayBackgroundView::kViewClassName) {
|
| view_bounds.Inset(1, 1, 3, 3);
|
| } else if (view->GetClassName() ==
|
| - ash::internal::TrayPopupHeaderButton::kViewClassName) {
|
| + ash::TrayPopupHeaderButton::kViewClassName) {
|
| view_bounds = view->GetLocalBounds();
|
| view_bounds.Inset(2, 1, 2, 2);
|
| }
|
|
|