| 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 "components/safe_browsing_db/v4_feature_list.h" |
| 6 |
| 5 #include "base/feature_list.h" | 7 #include "base/feature_list.h" |
| 6 #include "components/safe_browsing_db/v4_feature_list.h" | 8 #include "components/safe_browsing/features.h" |
| 7 | 9 |
| 8 namespace safe_browsing { | 10 namespace safe_browsing { |
| 9 | 11 |
| 10 namespace V4FeatureList { | 12 namespace V4FeatureList { |
| 11 | 13 |
| 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 | |
| 21 bool IsV4OnlyEnabled() { | 14 bool IsV4OnlyEnabled() { |
| 22 return base::FeatureList::IsEnabled(kV4OnlyEnabled); | 15 return base::FeatureList::IsEnabled(kV4OnlyEnabled); |
| 23 } | 16 } |
| 24 | 17 |
| 25 bool IsLocalDatabaseManagerEnabled() { | 18 bool IsLocalDatabaseManagerEnabled() { |
| 26 return base::FeatureList::IsEnabled(kLocalDatabaseManagerEnabled) || | 19 return base::FeatureList::IsEnabled(kLocalDatabaseManagerEnabled) || |
| 27 IsV4OnlyEnabled(); | 20 IsV4OnlyEnabled(); |
| 28 } | 21 } |
| 29 | 22 |
| 30 } // namespace | |
| 31 | |
| 32 V4UsageStatus GetV4UsageStatus() { | 23 V4UsageStatus GetV4UsageStatus() { |
| 33 V4UsageStatus v4_usage_status; | 24 V4UsageStatus v4_usage_status; |
| 34 if (safe_browsing::V4FeatureList::IsV4OnlyEnabled()) { | 25 if (safe_browsing::V4FeatureList::IsV4OnlyEnabled()) { |
| 35 v4_usage_status = V4UsageStatus::V4_ONLY; | 26 v4_usage_status = V4UsageStatus::V4_ONLY; |
| 36 } else if (safe_browsing::V4FeatureList::IsLocalDatabaseManagerEnabled()) { | 27 } else if (safe_browsing::V4FeatureList::IsLocalDatabaseManagerEnabled()) { |
| 37 v4_usage_status = V4UsageStatus::V4_INSTANTIATED; | 28 v4_usage_status = V4UsageStatus::V4_INSTANTIATED; |
| 38 } else { | 29 } else { |
| 39 v4_usage_status = V4UsageStatus::V4_DISABLED; | 30 v4_usage_status = V4UsageStatus::V4_DISABLED; |
| 40 } | 31 } |
| 41 return v4_usage_status; | 32 return v4_usage_status; |
| 42 } | 33 } |
| 43 | 34 |
| 44 } // namespace V4FeatureList | 35 } // namespace V4FeatureList |
| 45 | 36 |
| 46 } // namespace safe_browsing | 37 } // namespace safe_browsing |
| OLD | NEW |