| Index: ui/app_list/search_result.cc
|
| diff --git a/ui/app_list/search_result.cc b/ui/app_list/search_result.cc
|
| index e9f17567b5620e36ceb24d3eb8d1b757dafb75e9..bc0834321df060fda77e9af2187974a18868071c 100644
|
| --- a/ui/app_list/search_result.cc
|
| +++ b/ui/app_list/search_result.cc
|
| @@ -57,6 +57,12 @@ void SearchResult::SetBadgeIcon(const gfx::ImageSkia& badge_icon) {
|
| observer.OnBadgeIconChanged();
|
| }
|
|
|
| +void SearchResult::SetIsMouseInView(bool mouse_is_inside) {
|
| + mouse_is_in_view_ = mouse_is_inside;
|
| + for (auto& observer : observers_)
|
| + observer.OnViewHoverStateChanged();
|
| +}
|
| +
|
| void SearchResult::SetActions(const Actions& sets) {
|
| actions_ = sets;
|
| for (auto& observer : observers_)
|
|
|