| Index: ash/common/system/tray/actionable_view.cc
|
| diff --git a/ash/common/system/tray/actionable_view.cc b/ash/common/system/tray/actionable_view.cc
|
| index 309c8c591ec9fb4a03765cb012fb036cc34fdb2a..2dd90ed051d2ed1b49dc2d3cc17c47d390507161 100644
|
| --- a/ash/common/system/tray/actionable_view.cc
|
| +++ b/ash/common/system/tray/actionable_view.cc
|
| @@ -42,9 +42,8 @@ ActionableView::~ActionableView() {
|
| }
|
|
|
| void ActionableView::OnPaintFocus(gfx::Canvas* canvas) {
|
| - gfx::Rect rect(GetFocusBounds());
|
| - rect.Inset(1, 1, 3, 2);
|
| - canvas->DrawSolidFocusRect(rect, kFocusBorderColor);
|
| + gfx::RectF rect(GetFocusBounds());
|
| + canvas->DrawSolidFocusRect(rect, kFocusBorderColor, kFocusBorderThickness);
|
| }
|
|
|
| gfx::Rect ActionableView::GetFocusBounds() {
|
|
|