summaryrefslogtreecommitdiff
path: root/chromium/components/policy/core/common/features.cc
blob: b1b69e0b35d48121421ac7b3b8501502c7be057f (plain)
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
// 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