1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "chrome/browser/supervised_user/supervised_user_features.h"
6 
7 #include "base/feature_list.h"
8 
9 namespace supervised_users {
10 
11 const base::Feature kSupervisedUserIframeFilter{
12     "SupervisedUserIframeFilter", base::FEATURE_ENABLED_BY_DEFAULT};
13 
14 const base::Feature kSupervisedUserInitiatedExtensionInstall{
15     "SupervisedUserInitiatedExtensionInstall",
16     base::FEATURE_ENABLED_BY_DEFAULT};
17 
18 const base::Feature kEduCoexistenceFlowV2{"EduCoexistenceV2",
19                                           base::FEATURE_DISABLED_BY_DEFAULT};
20 
IsEduCoexistenceFlowV2Enabled()21 bool IsEduCoexistenceFlowV2Enabled() {
22   return base::FeatureList::IsEnabled(kEduCoexistenceFlowV2);
23 }
24 
25 }  // namespace supervised_users
26