| 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 2dd90ed051d2ed1b49dc2d3cc17c47d390507161..bc97b678a312e6f0c2b5a888255ec5688b77cc8c 100644
|
| --- a/ash/common/system/tray/actionable_view.cc
|
| +++ b/ash/common/system/tray/actionable_view.cc
|
| @@ -42,14 +42,10 @@ ActionableView::~ActionableView() {
|
| }
|
|
|
| void ActionableView::OnPaintFocus(gfx::Canvas* canvas) {
|
| - gfx::RectF rect(GetFocusBounds());
|
| + gfx::RectF rect(GetLocalBounds());
|
| canvas->DrawSolidFocusRect(rect, kFocusBorderColor, kFocusBorderThickness);
|
| }
|
|
|
| -gfx::Rect ActionableView::GetFocusBounds() {
|
| - return GetLocalBounds();
|
| -}
|
| -
|
| void ActionableView::HandlePerformActionResult(bool action_performed,
|
| const ui::Event& event) {
|
| AnimateInkDrop(action_performed ? views::InkDropState::ACTION_TRIGGERED
|
|
|