Commit 6545f679 authored by Alan Cutter's avatar Alan Cutter Committed by Chromium LUCI CQ

Enable migration from default Chrome apps to default web apps

This CL enables the migration from default installed Chrome apps to
default installed web apps.

This still needs feature launch approval:
 - Chrome OS: https://crbug.com/1099150
 - Desktop: https://crbug.com/1130075
This migration is being enabled to get test coverage and user reports
in canary.
If this is not approved by branch point it will be disabled again.

Test: ExternalWebAppMigrationBrowserTest
Bug: 1058265, 809304
Change-Id: I22f8b43631708a40b5333a7ce1bd4177e9792b49
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2562922Reviewed-by: default avatarGlen Robertson <glenrob@chromium.org>
Commit-Queue: Alan Cutter <alancutter@chromium.org>
Cr-Commit-Position: refs/heads/master@{#832669}
parent b160d492
...@@ -25,14 +25,13 @@ bool g_always_enabled_for_testing = false; ...@@ -25,14 +25,13 @@ bool g_always_enabled_for_testing = false;
// Enables migration of default installed GSuite apps over to their replacement // Enables migration of default installed GSuite apps over to their replacement
// web apps. // web apps.
const base::Feature kMigrateDefaultChromeAppToWebAppsGSuite{ const base::Feature kMigrateDefaultChromeAppToWebAppsGSuite{
"MigrateDefaultChromeAppToWebAppsGSuite", "MigrateDefaultChromeAppToWebAppsGSuite", base::FEATURE_ENABLED_BY_DEFAULT};
base::FEATURE_DISABLED_BY_DEFAULT};
// Enables migration of default installed non-GSuite apps over to their // Enables migration of default installed non-GSuite apps over to their
// replacement web apps. // replacement web apps.
const base::Feature kMigrateDefaultChromeAppToWebAppsNonGSuite{ const base::Feature kMigrateDefaultChromeAppToWebAppsNonGSuite{
"MigrateDefaultChromeAppToWebAppsNonGSuite", "MigrateDefaultChromeAppToWebAppsNonGSuite",
base::FEATURE_DISABLED_BY_DEFAULT}; base::FEATURE_ENABLED_BY_DEFAULT};
bool IsExternalAppInstallFeatureEnabled(base::StringPiece feature_name) { bool IsExternalAppInstallFeatureEnabled(base::StringPiece feature_name) {
if (g_always_enabled_for_testing) if (g_always_enabled_for_testing)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment