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

Unified 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: nit 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/content_features.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/content_features.h
diff --git a/content/public/common/content_features.h b/content/public/common/content_features.h
new file mode 100644
index 0000000000000000000000000000000000000000..00b71c9111c5e776607593219a2bde0a0296a057
--- /dev/null
+++ b/content/public/common/content_features.h
@@ -0,0 +1,27 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// This file defines all the public base::FeatureList features for the content
+// module.
+
+#ifndef CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_
+#define CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_
+
+#include "build/build_config.h"
+#include "base/feature_list.h"
+#include "content/common/content_export.h"
+
+namespace content {
+
+#if defined(OS_ANDROID)
+// FeatureList definition for the Seccomp field trial.
+CONTENT_EXPORT extern const base::Feature kSeccompSandboxAndroidFeature;
+#endif // defined(OS_ANDROID)
+
+// DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
+// alphabetical order, or in one of the ifdefs (also in order in each section).
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_
« 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