Chromium Code Reviews| Index: ash/system/tray/hover_highlight_view.cc |
| diff --git a/ash/system/tray/hover_highlight_view.cc b/ash/system/tray/hover_highlight_view.cc |
| index 164cb41e3c0c7c07454f048212703a2ac410555a..b6cc7e289db22241fdd9aedd9dc3da8ff9e5bb78 100644 |
| --- a/ash/system/tray/hover_highlight_view.cc |
| +++ b/ash/system/tray/hover_highlight_view.cc |
| @@ -240,4 +240,12 @@ void HoverHighlightView::OnFocus() { |
| ActionableView::OnFocus(); |
| } |
| +bool HoverHighlightView::GetTooltipText(const gfx::Point& p, |
| + base::string16* tooltip) const { |
| + if (tooltip_.empty()) |
| + return false; |
| + *tooltip = tooltip_; |
| + return true; |
| +} |
|
stevenjb
2015/11/23 20:42:03
Move this to match the header order.
|
| + |
| } // namespace ash |