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

Unified Diff: ui/app_list/app_list_model.cc

Issue 105773004: Introduces the speech recognition UI to app_list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: start_page existence Created 7 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.cc
diff --git a/ui/app_list/app_list_model.cc b/ui/app_list/app_list_model.cc
index 535fff27c33030c7361d48a43962253c4e829458..0de0d42d6f6e3f74fd624fd7620b03d346de7518 100644
--- a/ui/app_list/app_list_model.cc
+++ b/ui/app_list/app_list_model.cc
@@ -8,6 +8,7 @@
#include "ui/app_list/app_list_model_observer.h"
#include "ui/app_list/search_box_model.h"
#include "ui/app_list/search_result.h"
+#include "ui/app_list/speech_ui_model.h"
namespace app_list {
@@ -15,6 +16,7 @@ AppListModel::AppListModel()
: item_list_(new AppListItemList),
search_box_(new SearchBoxModel),
results_(new SearchResults),
+ speech_ui_(new SpeechUIModel(search_box_.get())),
signed_in_(false),
status_(STATUS_NORMAL) {
}

Powered by Google App Engine
This is Rietveld 408576698