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

Unified Diff: chrome/browser/ui/app_list/search/app_search_provider.h

Issue 379333005: Allow AppSearchProvider to provide recommendations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments 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/search/app_search_provider.h
diff --git a/chrome/browser/ui/app_list/search/app_search_provider.h b/chrome/browser/ui/app_list/search/app_search_provider.h
index cccf9df14c4c0d115fef2dd06f034e3280cf0d8c..7fc805e24cbe871a7ee5807fd929c89f18989e9d 100644
--- a/chrome/browser/ui/app_list/search/app_search_provider.h
+++ b/chrome/browser/ui/app_list/search/app_search_provider.h
@@ -20,6 +20,9 @@ class ExtensionSet;
}
namespace app_list {
Matt Giuca 2014/07/23 01:53:19 nit: blank line after this.
calamity 2014/07/28 02:55:27 Done.
+namespace test {
+class AppSearchProviderTest;
+}
class AppSearchProvider : public SearchProvider,
public extensions::ExtensionRegistryObserver {
@@ -36,6 +39,10 @@ class AppSearchProvider : public SearchProvider,
class App;
typedef ScopedVector<App> Apps;
+ friend test::AppSearchProviderTest;
+
+ void StartImpl(const base::Time& current_time, const base::string16& query);
+
// Adds extensions to apps container if they should be displayed.
void AddApps(const extensions::ExtensionSet& extensions);
void RefreshApps();

Powered by Google App Engine
This is Rietveld 408576698