// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/services/app_service/public/cpp/types_util.h" #include "base/notreached.h" #include "components/services/app_service/public/cpp/app_launch_util.h" namespace apps_util { bool IsInstalled(apps::Readiness readiness) { … } bool IsDisabled(apps::Readiness readiness) { … } bool IsHumanLaunch(apps::LaunchSource launch_source) { … } bool AppTypeUsesWebContents(apps::AppType app_type) { … } } // namespace apps_util