Index: ash/system/tray/tray_views.cc |
diff --git a/ash/system/tray/tray_views.cc b/ash/system/tray/tray_views.cc |
index c09b5747e94e97812a1cdf871b3b2cf25ebb0164..d5a45712811dc1773fe5c30b0939def427daee72 100644 |
--- a/ash/system/tray/tray_views.cc |
+++ b/ash/system/tray/tray_views.cc |
@@ -65,6 +65,13 @@ bool ActionableView::OnMousePressed(const views::MouseEvent& event) { |
return PerformAction(event); |
} |
+void ActionableView::OnPaintFocusBorder(gfx::Canvas* canvas) { |
+ if (HasFocus() && (focusable() || IsAccessibilityFocusable())) { |
+ canvas->DrawRect(gfx::Rect(1, 1, width() - 3, height() - 3), |
+ kFocusBorderColor); |
+ } |
+} |
+ |
//////////////////////////////////////////////////////////////////////////////// |
// HoverHighlightView |