| Index: chrome/browser/ui/ash/app_list/app_list_presenter_service.cc
|
| diff --git a/chrome/browser/ui/ash/app_list/app_list_presenter_service.cc b/chrome/browser/ui/ash/app_list/app_list_presenter_service.cc
|
| index c8411b1a0f4777e58f70ddff7e83f7db20202707..103244520b3ffc88db0736aaf806b83defc6d3c3 100644
|
| --- a/chrome/browser/ui/ash/app_list/app_list_presenter_service.cc
|
| +++ b/chrome/browser/ui/ash/app_list/app_list_presenter_service.cc
|
| @@ -49,8 +49,8 @@ void AppListPresenterService::ToggleAppList(int64_t display_id) {
|
| void AppListPresenterService::StartVoiceInteractionSession() {
|
| auto* service = arc::ArcServiceManager::Get()
|
| ->GetService<arc::ArcVoiceInteractionFrameworkService>();
|
| - DCHECK(service);
|
| - service->StartSessionFromUserInteraction(gfx::Rect());
|
| + if (service)
|
| + service->StartSessionFromUserInteraction(gfx::Rect());
|
| }
|
|
|
| app_list::AppListPresenterImpl* AppListPresenterService::GetPresenter() {
|
|
|