Update to dismiss AppList for launching Remote Apps

This CL updates Remote Apps so that the App List is dismissed when
launching the app from the context menu.

Bug: 1101208
Change-Id: Ic52f2e81bfd458ff3b68db65f14e0188617b2ab5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2388285
Commit-Queue: Jit Yao Yap <jityao@google.com>
Reviewed-by: Nancy Wang <nancylingwang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#804123}
diff --git a/chrome/browser/ui/app_list/app_service/app_service_app_item.cc b/chrome/browser/ui/app_list/app_service/app_service_app_item.cc
index 9c71e42..2a3107f 100644
--- a/chrome/browser/ui/app_list/app_service/app_service_app_item.cc
+++ b/chrome/browser/ui/app_list/app_service/app_service_app_item.cc
@@ -121,7 +121,8 @@
 
   // TODO(crbug.com/826982): drop the if, and call MaybeDismissAppList
   // unconditionally?
-  if (app_type_ == apps::mojom::AppType::kArc) {
+  if (app_type_ == apps::mojom::AppType::kArc ||
+      app_type_ == apps::mojom::AppType::kRemote) {
     MaybeDismissAppList();
   }
 }