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

Unified Diff: ui/app_list/search_provider.h

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: ui/app_list/search_provider.h
diff --git a/ui/app_list/search_provider.h b/ui/app_list/search_provider.h
index f8ebfd0133d2ef685ddd8bf507213b396475c8c6..472e82fe3948f7ab95f854e9f4e55c13b0422292 100644
--- a/ui/app_list/search_provider.h
+++ b/ui/app_list/search_provider.h
@@ -24,7 +24,10 @@ class APP_LIST_EXPORT SearchProvider {
SearchProvider();
virtual ~SearchProvider();
- // Invoked to start a query.
+ // Invoked to start a query for recommendations.
+ virtual void FetchRecommendations();
Matt Giuca 2014/07/22 04:31:08 I'm wondering if it's simpler to just make Start("
calamity 2014/07/22 07:24:04 I agree. I walked in thinking this would be cleane
+
+ // Invoked to start a query for a search term.
virtual void Start(const base::string16& query) = 0;
// Invoked to stop the current query and no more results changes.

Powered by Google App Engine
This is Rietveld 408576698