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 #ifndef COMPONENTS_SAFE_BROWSING_FEATURES_H_ | |
vakh (use Gerrit instead)
2017/07/07 00:23:40
Please leave some blank lines between the copyrigh
hkamila
2017/07/07 01:29:49
Acknowledged.
| |
5 #define COMPONENTS_SAFE_BROWSING_FEATURES_H_ | |
Jialiu Lin
2017/07/06 23:58:27
nit: Add an empty line under #define
hkamila
2017/07/07 01:29:49
Acknowledged.
| |
6 #include <stddef.h> | |
7 #include <algorithm> | |
8 #include <utility> | |
9 #include <vector> | |
10 #include "base/feature_list.h" | |
Jialiu Lin
2017/07/06 23:58:27
nit: a blank line before #include "base/feature_li
hkamila
2017/07/07 01:29:49
Acknowledged.
| |
11 #include "base/macros.h" | |
12 #include "base/values.h" | |
13 namespace base { | |
14 class ListValue; | |
15 } // namespace base | |
16 | |
Jialiu Lin
2017/07/06 23:58:27
maybe put this class into safe_browsing namespace?
hkamila
2017/07/07 01:29:49
Acknowledged.
| |
17 // Features list | |
18 extern const base::Feature kLocalDatabaseManagerEnabled; | |
19 extern const base::Feature kV4OnlyEnabled; | |
20 extern const base::Feature kThreatDomDetailsTagAndAttributeFeature; | |
21 | |
22 base::ListValue GetTrueParametersList(); | |
23 | |
24 #endif // COMPONENTS_SAFE_BROWSING_FEATURES_H_ | |
OLD | NEW |