1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
// Copyright 2020 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/webapps/browser/features.h"
#include "base/feature_list.h"
namespace webapps {
namespace features {
#if BUILDFLAG(IS_ANDROID)
BASE_FEATURE(kAddToHomescreenMessaging,
"AddToHomescreenMessaging",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kAmbientBadgeSuppressFirstVisit,
"AmbientBadgeSuppressFirstVisit",
base::FEATURE_ENABLED_BY_DEFAULT);
extern const base::FeatureParam<base::TimeDelta>
kAmbientBadgeSuppressFirstVisit_Period{&kAmbientBadgeSuppressFirstVisit,
"period", base::Days(30)};
// Enables or disables the installable ambient badge infobar.
BASE_FEATURE(kInstallableAmbientBadgeInfoBar,
"InstallableAmbientBadgeInfoBar",
base::FEATURE_ENABLED_BY_DEFAULT);
// Enables or disables the installable ambient badge message.
BASE_FEATURE(kInstallableAmbientBadgeMessage,
"InstallableAmbientBadgeMessage",
base::FEATURE_ENABLED_BY_DEFAULT);
// The capacity of cached domains which do not show message again if
// users do not accept the message.
extern const base::FeatureParam<int>
kInstallableAmbientBadgeMessage_ThrottleDomainsCapacity{
&kInstallableAmbientBadgeMessage,
"installable_ambient_badge_message_throttle_domains_capacity", 100};
// Enables or disables the installable ambient badge message.
BASE_FEATURE(kInstallPromptGlobalGuardrails,
"InstallPromptGlobalGuardrails",
base::FEATURE_DISABLED_BY_DEFAULT);
extern const base::FeatureParam<int>
kInstallPromptGlobalGuardrails_DismissCount{&kInstallPromptGlobalGuardrails,
"dismiss_count", 3};
extern const base::FeatureParam<base::TimeDelta>
kInstallPromptGlobalGuardrails_DismissPeriod{
&kInstallPromptGlobalGuardrails, "dismiss_period", base::Days(7)};
extern const base::FeatureParam<int> kInstallPromptGlobalGuardrails_IgnoreCount{
&kInstallPromptGlobalGuardrails, "ignore_count", 3};
extern const base::FeatureParam<base::TimeDelta>
kInstallPromptGlobalGuardrails_IgnorePeriod{&kInstallPromptGlobalGuardrails,
"ignore_period", base::Days(3)};
// Enables WebAPK Install Failure Notification.
BASE_FEATURE(kWebApkInstallFailureNotification,
"WebApkInstallFailureNotification",
base::FEATURE_DISABLED_BY_DEFAULT);
// Allow user to retry install WebAPK with the failure notification if the
// initial install failed. This needs to be used with
// |kWebApkInstallFailureNotification| Enabled.
BASE_FEATURE(kWebApkInstallFailureRetry,
"WebApkInstallFailureRetry",
base::FEATURE_DISABLED_BY_DEFAULT);
// When enabled, the web app install prompt will be block on the site if
// user ignored the prompt recently. The number of days the prompt will be
// blocked is controlled by feature |kAppBannerTriggering| with params
// |days_after_ignore|.
BASE_FEATURE(kBlockInstallPromptIfIgnoreRecently,
"BlockInstallPromptIfIgnoreRecently",
base::FEATURE_DISABLED_BY_DEFAULT);
#endif // BUILDFLAG(IS_ANDROID)
// When the user clicks "Create Shortcut" in the dot menu, the current page is
// used as start-url, instead of the manifest-supplied value.
// This allows subpages of web apps to be bookmarked via shortcuts
// separately from their parent app.
// For installing the parent app, the existing "Install Site" should be used
// instead. With this feature, "Install Site" now also shows up for websites
// without service worker, as long as they have a manifest.
BASE_FEATURE(kCreateShortcutIgnoresManifest,
"CreateShortcutIgnoresManifest",
base::FEATURE_DISABLED_BY_DEFAULT);
// Use segmentation to decide whether install prompt should be shown.
BASE_FEATURE(kInstallPromptSegmentation,
"InstallPromptSegmentation",
base::FEATURE_DISABLED_BY_DEFAULT);
// Keys to use when querying the variations params.
BASE_FEATURE(kAppBannerTriggering,
"AppBannerTriggering",
base::FEATURE_DISABLED_BY_DEFAULT);
extern const base::FeatureParam<double> kBannerParamsEngagementTotalKey{
&kAppBannerTriggering, "site_engagement_total",
kDefaultTotalEngagementToTrigger};
extern const base::FeatureParam<int> kBannerParamsDaysAfterBannerDismissedKey{
&kAppBannerTriggering, "days_after_dismiss",
kMinimumBannerBlockedToBannerShown};
extern const base::FeatureParam<int> kBannerParamsDaysAfterBannerIgnoredKey{
&kAppBannerTriggering, "days_after_ignore", kMinimumDaysBetweenBannerShows};
BASE_FEATURE(kWebAppsEnableMLModelForPromotion,
"WebAppsEnableMLModelForPromotion",
base::FEATURE_DISABLED_BY_DEFAULT);
// Allows installing a web app with fallback manifest values.
BASE_FEATURE(kUniversalInstallManifest,
"UniversalInstallManifest",
base::FEATURE_DISABLED_BY_DEFAULT);
// Allows installing a web app when no icon provided by the manifest.
BASE_FEATURE(kUniversalInstallIcon,
"UniversalInstallIcon",
base::FEATURE_DISABLED_BY_DEFAULT);
extern const base::FeatureParam<int> kMinimumFaviconSize{&kUniversalInstallIcon,
"size", 48};
// Enables per PWA System Media Controls on Windows
BASE_FEATURE(kWebAppSystemMediaControlsWin,
"WebAppSystemMediaControlsWin",
base::FEATURE_DISABLED_BY_DEFAULT);
} // namespace features
} // namespace webapps
|