| 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..ee43e715f0ac2a92904b366be1b8a373c3cf4453 100644
|
| --- a/ash/system/tray/hover_highlight_view.cc
|
| +++ b/ash/system/tray/hover_highlight_view.cc
|
| @@ -50,6 +50,14 @@ HoverHighlightView::HoverHighlightView(ViewClickListener* listener)
|
| HoverHighlightView::~HoverHighlightView() {
|
| }
|
|
|
| +bool HoverHighlightView::GetTooltipText(const gfx::Point& p,
|
| + base::string16* tooltip) const {
|
| + if (tooltip_.empty())
|
| + return false;
|
| + *tooltip = tooltip_;
|
| + return true;
|
| +}
|
| +
|
| void HoverHighlightView::AddIconAndLabel(const gfx::ImageSkia& image,
|
| const base::string16& text,
|
| bool highlight) {
|
|
|