Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: components/safe_browsing/features.h

Issue 2964693003: Added experiments section and exported the list of SafeBrowsing features in WebUI (Closed)
Patch Set: Changed the location of features.cc/.h Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698