summaryrefslogtreecommitdiffstats
path: root/athena
diff options
context:
space:
mode:
authormgiuca <mgiuca@chromium.org>2014-12-15 19:08:40 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-16 03:09:09 +0000
commit403458264d79f23f3b4e6b613ccabb654ebee499 (patch)
treed12f3a067cb2386e80afbb5703ec9a50b746f006 /athena
parent0c35f9f6fa0c40192533febe419f7a07249f45e2 (diff)
downloadchromium_src-403458264d79f23f3b4e6b613ccabb654ebee499.zip
chromium_src-403458264d79f23f3b4e6b613ccabb654ebee499.tar.gz
chromium_src-403458264d79f23f3b4e6b613ccabb654ebee499.tar.bz2
App list voice searches now prioritize exact-match web results.
This means that if you do a voice search, the first result will always be a web search for exactly what you said (not some other result like an app, or a search from your history). So you can now use the voice search interface as a direct way to send queries to the web search. BUG=436665 TBR=mukai@chromium.org Review URL: https://codereview.chromium.org/796293002 Cr-Commit-Position: refs/heads/master@{#308518}
Diffstat (limited to 'athena')
-rw-r--r--athena/home/app_list_view_delegate.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/athena/home/app_list_view_delegate.cc b/athena/home/app_list_view_delegate.cc
index cfd00dc..aade380 100644
--- a/athena/home/app_list_view_delegate.cc
+++ b/athena/home/app_list_view_delegate.cc
@@ -66,7 +66,7 @@ void AppListViewDelegate::GetShortcutPathForApp(
void AppListViewDelegate::StartSearch() {
if (search_controller_)
- search_controller_->Start();
+ search_controller_->Start(false);
}
void AppListViewDelegate::StopSearch() {