diff --git a/components/services/app_service/public/cpp/features.cc b/components/services/app_service/public/cpp/features.cc index 571129ca3242f..942814465eaf2 100644 --- a/components/services/app_service/public/cpp/features.cc +++ b/components/services/app_service/public/cpp/features.cc @@ -15,4 +15,7 @@ const base::Feature kAppServiceLaunchWithoutMojom{ const base::Feature kAppServiceSetPermissionWithoutMojom{ "AppServiceSetPermissionWithoutMojom", base::FEATURE_ENABLED_BY_DEFAULT}; +const base::Feature kAppServiceUninstallWithoutMojom{ + "AppServiceUninstallWithoutMojom", base::FEATURE_DISABLED_BY_DEFAULT}; + } // namespace apps diff --git a/components/services/app_service/public/cpp/features.h b/components/services/app_service/public/cpp/features.h index aa51235011d3f..a5faf229b72de 100644 --- a/components/services/app_service/public/cpp/features.h +++ b/components/services/app_service/public/cpp/features.h @@ -16,6 +16,8 @@ COMPONENT_EXPORT(APP_TYPES) extern const base::Feature kAppServiceLaunchWithoutMojom; COMPONENT_EXPORT(APP_TYPES) extern const base::Feature kAppServiceSetPermissionWithoutMojom; +COMPONENT_EXPORT(APP_TYPES) +extern const base::Feature kAppServiceUninstallWithoutMojom; } // namespace apps