| // Copyright 2019 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| import '../base/context.dart'; |
| import '../base/platform.dart'; |
| import '../base/process_manager.dart'; |
| import '../features.dart'; |
| /// The web workflow instance. |
| WebWorkflow get webWorkflow => context.get<WebWorkflow>(); |
| class WebWorkflow extends Workflow { |
| bool get appliesToHostPlatform => featureFlags.isWebEnabled && (platform.isWindows || platform.isMacOS || platform.isLinux); |
| bool get canLaunchDevices => featureFlags.isWebEnabled && canFindChrome(); |
| bool get canListDevices => featureFlags.isWebEnabled && canFindChrome(); |
| bool get canListEmulators => false; |
| /// Whether we can locate the chrome executable. |
| final String chrome = findChromeExecutable(); |
| return processManager.canRun(chrome); |