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..f8526a71c1a447f42698db677e7831b40e631171 |
--- /dev/null |
+++ b/content/public/common/content_features.h |
@@ -0,0 +1,26 @@ |
+// 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 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.
|
+ |
+#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_ |