summaryrefslogtreecommitdiff
path: root/chromium/components/policy/core/common/features.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/policy/core/common/features.cc')
-rw-r--r--chromium/components/policy/core/common/features.cc40
1 files changed, 40 insertions, 0 deletions
diff --git a/chromium/components/policy/core/common/features.cc b/chromium/components/policy/core/common/features.cc
new file mode 100644
index 00000000000..b1b69e0b35d
--- /dev/null
+++ b/chromium/components/policy/core/common/features.cc
@@ -0,0 +1,40 @@
+// Copyright 2019 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/policy/core/common/features.h"
+
+#include "google_apis/gaia/gaia_constants.h"
+
+namespace policy {
+
+namespace features {
+
+const base::Feature kDefaultChromeAppsMigration{
+ "EnableDefaultAppsMigration", base::FEATURE_ENABLED_BY_DEFAULT};
+
+const base::Feature kUploadBrowserDeviceIdentifier{
+ "UploadBrowserDeviceIdentifier", base::FEATURE_ENABLED_BY_DEFAULT};
+
+const base::Feature kLoginEventReporting{"LoginEventReporting",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
+const base::Feature kPasswordBreachEventReporting{
+ "PasswordBreachEventReporting", base::FEATURE_DISABLED_BY_DEFAULT};
+
+const base::Feature kChromeManagementPageAndroid{
+ "ChromeManagementPageAndroid", base::FEATURE_ENABLED_BY_DEFAULT};
+
+const base::Feature kEnableUserCloudSigninRestrictionPolicyFetcher{
+ "UserCloudSigninRestrictionPolicyFetcher",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
+const base::Feature kActivateMetricsReportingEnabledPolicyAndroid{
+ "ActivateMetricsReportingEnabledPolicyAndroid",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
+const base::Feature kEnableCachedManagementStatus{
+ "EnableCachedManagementStatus", base::FEATURE_ENABLED_BY_DEFAULT};
+} // namespace features
+
+} // namespace policy