| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/feature_list.h" |
| 5 #include "components/safe_browsing_db/v4_feature_list.h" | 6 #include "components/safe_browsing_db/v4_feature_list.h" |
| 6 | 7 |
| 7 #include "base/feature_list.h" | |
| 8 #include "components/safe_browsing/features.h" | |
| 9 | |
| 10 namespace safe_browsing { | 8 namespace safe_browsing { |
| 11 | 9 |
| 12 namespace V4FeatureList { | 10 namespace V4FeatureList { |
| 13 | 11 |
| 12 namespace { |
| 13 |
| 14 const base::Feature kLocalDatabaseManagerEnabled{ |
| 15 "SafeBrowsingV4LocalDatabaseManagerEnabled", |
| 16 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 17 |
| 18 const base::Feature kV4OnlyEnabled{"SafeBrowsingV4OnlyEnabled", |
| 19 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 20 |
| 14 bool IsV4OnlyEnabled() { | 21 bool IsV4OnlyEnabled() { |
| 15 return base::FeatureList::IsEnabled(kV4OnlyEnabled); | 22 return base::FeatureList::IsEnabled(kV4OnlyEnabled); |
| 16 } | 23 } |
| 17 | 24 |
| 18 bool IsLocalDatabaseManagerEnabled() { | 25 bool IsLocalDatabaseManagerEnabled() { |
| 19 return base::FeatureList::IsEnabled(kLocalDatabaseManagerEnabled) || | 26 return base::FeatureList::IsEnabled(kLocalDatabaseManagerEnabled) || |
| 20 IsV4OnlyEnabled(); | 27 IsV4OnlyEnabled(); |
| 21 } | 28 } |
| 22 | 29 |
| 30 } // namespace |
| 31 |
| 23 V4UsageStatus GetV4UsageStatus() { | 32 V4UsageStatus GetV4UsageStatus() { |
| 24 V4UsageStatus v4_usage_status; | 33 V4UsageStatus v4_usage_status; |
| 25 if (safe_browsing::V4FeatureList::IsV4OnlyEnabled()) { | 34 if (safe_browsing::V4FeatureList::IsV4OnlyEnabled()) { |
| 26 v4_usage_status = V4UsageStatus::V4_ONLY; | 35 v4_usage_status = V4UsageStatus::V4_ONLY; |
| 27 } else if (safe_browsing::V4FeatureList::IsLocalDatabaseManagerEnabled()) { | 36 } else if (safe_browsing::V4FeatureList::IsLocalDatabaseManagerEnabled()) { |
| 28 v4_usage_status = V4UsageStatus::V4_INSTANTIATED; | 37 v4_usage_status = V4UsageStatus::V4_INSTANTIATED; |
| 29 } else { | 38 } else { |
| 30 v4_usage_status = V4UsageStatus::V4_DISABLED; | 39 v4_usage_status = V4UsageStatus::V4_DISABLED; |
| 31 } | 40 } |
| 32 return v4_usage_status; | 41 return v4_usage_status; |
| 33 } | 42 } |
| 34 | 43 |
| 35 } // namespace V4FeatureList | 44 } // namespace V4FeatureList |
| 36 | 45 |
| 37 } // namespace safe_browsing | 46 } // namespace safe_browsing |
| OLD | NEW |