OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2017 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 #ifndef COMPONENTS_SAFE_BROWSING_FEATURES_H_ |
| 6 #define COMPONENTS_SAFE_BROWSING_FEATURES_H_ |
| 7 |
| 8 #include <stddef.h> |
| 9 #include <algorithm> |
| 10 #include <utility> |
| 11 #include <vector> |
| 12 |
| 13 #include "base/feature_list.h" |
| 14 #include "base/macros.h" |
| 15 #include "base/values.h" |
| 16 namespace base { |
| 17 class ListValue; |
| 18 } // namespace base |
| 19 |
| 20 namespace safe_browsing { |
| 21 // Features list |
| 22 extern const base::Feature kLocalDatabaseManagerEnabled; |
| 23 extern const base::Feature kV4OnlyEnabled; |
| 24 extern const base::Feature kThreatDomDetailsTagAndAttributeFeature; |
| 25 |
| 26 base::ListValue GetFeatureStatusList(); |
| 27 |
| 28 #endif // COMPONENTS_SAFE_BROWSING_FEATURES_H_ |
| 29 } // namespace safe_browsing |
OLD | NEW |