#ifndef COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_TYPES_UTIL_H_
#define COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_TYPES_UTIL_H_
#include "base/component_export.h"
#include "components/services/app_service/public/cpp/app_launch_util.h"
#include "components/services/app_service/public/cpp/app_types.h"
namespace apps_util {
bool COMPONENT_EXPORT(APP_TYPES) IsInstalled(apps::Readiness readiness);
bool COMPONENT_EXPORT(APP_TYPES) IsDisabled(apps::Readiness readiness);
bool COMPONENT_EXPORT(APP_TYPES)
IsHumanLaunch(apps::LaunchSource launch_source);
bool COMPONENT_EXPORT(APP_TYPES) AppTypeUsesWebContents(apps::AppType app_type);
}
#endif