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

Unified Diff: ui/app_list/search_provider.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: ui/app_list/search_provider.cc
diff --git a/ui/app_list/search_provider.cc b/ui/app_list/search_provider.cc
index 916825f4725b84e495c6937b54fdc4c4dffaea06..48b3f57ae5746191d2f0ce47286209eddb0805c1 100644
--- a/ui/app_list/search_provider.cc
+++ b/ui/app_list/search_provider.cc
@@ -10,9 +10,14 @@ namespace app_list {
SearchProvider::SearchProvider() {
}
+
SearchProvider::~SearchProvider() {
}
+void SearchProvider::FetchRecommendations() {
+ ClearResults();
+}
+
void SearchProvider::ReleaseResult(std::vector<SearchResult*>* results) {
results_.release(results);
}

Powered by Google App Engine
This is Rietveld 408576698