OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 // This file defines all the base::FeatureList features for the content module. | |
jam
2015/11/16 22:19:32
nit: add "public base::FeatureList"
then once we
Robert Sesek
2015/11/21 03:32:47
Done.
| |
6 | |
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ | |
8 #define CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ | |
9 | |
10 #include "build/build_config.h" | |
11 #include "base/feature_list.h" | |
12 #include "content/common/content_export.h" | |
13 | |
14 namespace content { | |
15 | |
16 #if defined(OS_ANDROID) | |
17 // FeatureList definition for the Seccomp field trial. | |
18 CONTENT_EXPORT extern const base::Feature kSeccompSandboxAndroidFeature; | |
19 #endif // defined(OS_ANDROID) | |
20 | |
21 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | |
22 // alphabetical order, or in one of the ifdefs (also in order in each section). | |
23 | |
24 } // namespace content | |
25 | |
26 #endif // CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ | |
OLD | NEW |