| Index: chrome/browser/ui/app_list/app_list_view_delegate.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_view_delegate.cc b/chrome/browser/ui/app_list/app_list_view_delegate.cc
|
| index d172367ed489fd01d342f9d715cde6c6d8e072d0..10c88898cb8618b0af5bf92d3bd857562f84ef31 100644
|
| --- a/chrome/browser/ui/app_list/app_list_view_delegate.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_view_delegate.cc
|
| @@ -51,7 +51,7 @@
|
|
|
| namespace {
|
|
|
| -const int kAutoLaunchDefaultTimeoutSec = 3;
|
| +const int kAutoLaunchDefaultTimeoutMilliSec = 50;
|
|
|
| #if defined(OS_WIN)
|
| void CreateShortcutInWebAppDir(
|
| @@ -332,8 +332,8 @@ void AppListViewDelegate::OnSpeechResult(const base::string16& result,
|
| bool is_final) {
|
| speech_ui_->SetSpeechResult(result, is_final);
|
| if (is_final) {
|
| - auto_launch_timeout_ = base::TimeDelta::FromSeconds(
|
| - kAutoLaunchDefaultTimeoutSec);
|
| + auto_launch_timeout_ = base::TimeDelta::FromMilliseconds(
|
| + kAutoLaunchDefaultTimeoutMilliSec);
|
| model_->search_box()->SetText(result);
|
| }
|
| }
|
|
|