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

Unified Diff: chrome/browser/ui/app_list/app_list_view_delegate.cc

Issue 379333005: Allow AppSearchProvider to provide recommendations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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: chrome/browser/ui/app_list/app_list_view_delegate.cc
diff --git a/chrome/browser/ui/app_list/app_list_view_delegate.cc b/chrome/browser/ui/app_list/app_list_view_delegate.cc
index c813ca97b72d92cc49be332ae954df4f141a6b83..ce660e922d7e83994988ddf92af2c593779d0166 100644
--- a/chrome/browser/ui/app_list/app_list_view_delegate.cc
+++ b/chrome/browser/ui/app_list/app_list_view_delegate.cc
@@ -305,6 +305,11 @@ void AppListViewDelegate::GetShortcutPathForApp(
#endif
}
+void AppListViewDelegate::FetchRecommendations() {
+ if (search_controller_)
+ search_controller_->FetchRecommendations();
+}
+
void AppListViewDelegate::StartSearch() {
if (search_controller_)
search_controller_->Start();

Powered by Google App Engine
This is Rietveld 408576698