Index: ui/app_list/app_list_view.cc |
diff --git a/ui/app_list/app_list_view.cc b/ui/app_list/app_list_view.cc |
index aec5a376d5d5560a1bcea6557d6e4ba5d4b127ed..1ec1458ef894fb69313feb315cac02ae83910abf 100644 |
--- a/ui/app_list/app_list_view.cc |
+++ b/ui/app_list/app_list_view.cc |
@@ -115,6 +115,15 @@ views::View* AppListView::GetInitiallyFocusedView() { |
return search_box_view_->search_box(); |
} |
+bool AppListView::HasHitTestMask() const { |
+ return true; |
+} |
+ |
+void AppListView::GetHitTestMask(gfx::Path* mask) const { |
+ DCHECK(mask); |
+ bubble_border_->GetMask(GetBubbleFrameView()->bounds(), mask); |
+} |
+ |
bool AppListView::OnKeyPressed(const views::KeyEvent& event) { |
if (event.key_code() == ui::VKEY_ESCAPE) { |
Close(); |