Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Unified Diff: ui/app_list/app_list_view.cc

Issue 10872099: ash: Add support for additional icons in apps search list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 d0b56e48b658f30ca12a63fd47eed548d6494330..d1c0b43f19dd974317d69977e5079aeddbb85b3d 100644
--- a/ui/app_list/app_list_view.cc
+++ b/ui/app_list/app_list_view.cc
@@ -193,4 +193,11 @@ void AppListView::OpenResult(const SearchResult& result, int event_flags) {
delegate_->OpenSearchResult(result, event_flags);
}
+void AppListView::InvokeResultAction(const SearchResult& result,
+ int action_index,
+ int event_flags) {
+ if (delegate_.get())
+ delegate_->InvokeSearchResultAction(result, action_index, event_flags);
+}
+
} // namespace app_list

Powered by Google App Engine
This is Rietveld 408576698