| Index: chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| diff --git a/chrome/browser/ui/app_list/arc/arc_app_utils.cc b/chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| index c1b7d43a5b1667c59c5bbe06a4cfa909344008e6..94e69c14130ea9285aa349d6eb9bf228ebebce1b 100644
|
| --- a/chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| +++ b/chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| @@ -183,6 +183,11 @@ bool LaunchAppWithRect(content::BrowserContext* context,
|
| return false;
|
| }
|
|
|
| + if (!app_info->launchable) {
|
| + VLOG(2) << "Cannot launch non-launchable app: " << app_id << ".";
|
| + return false;
|
| + }
|
| +
|
| arc::mojom::AppInstance* app_instance =
|
| GetAppInstance(kMinVersion, kLaunchAppStr);
|
| if (!app_instance)
|
|
|