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

Side by Side Diff: content/public/common/content_features.h

Issue 1419083012: Create a field trial for Seccomp-BPF on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add content_features Created 5 years, 1 month 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
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/content_features.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/content_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698