Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / chromeos / ui / focus_ring_layer.cc
index 303d594..97b637d 100644 (file)
@@ -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);
   }