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

Unified Diff: ui/app_list/app_list_model.h

Issue 796293002: App list voice searches now prioritize exact-match web results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed MixerTest and add MixerTest.VoiceQuery. Created 6 years 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_model.h
diff --git a/ui/app_list/app_list_model.h b/ui/app_list/app_list_model.h
index 68ac9ed6cdec956162621e63be8a330ff6c19ba4..79cefe6ae518b087427f86af05110731b98106b4 100644
--- a/ui/app_list/app_list_model.h
+++ b/ui/app_list/app_list_model.h
@@ -154,6 +154,7 @@ class APP_LIST_EXPORT AppListModel : public AppListItemListObserver {
SearchBoxModel* search_box() { return search_box_.get(); }
SearchResults* results() { return results_.get(); }
+ SearchResult* auto_launch_result() { return auto_launch_result_.get(); }
Status status() const { return status_; }
bool folders_enabled() const { return folders_enabled_; }
@@ -193,6 +194,7 @@ class APP_LIST_EXPORT AppListModel : public AppListItemListObserver {
scoped_ptr<SearchBoxModel> search_box_;
scoped_ptr<SearchResults> results_;
+ scoped_ptr<SearchResult> auto_launch_result_;
calamity 2014/12/16 01:50:03 Unused?
Matt Giuca 2014/12/16 02:04:09 Done.
Status status_;
State state_;

Powered by Google App Engine
This is Rietveld 408576698