| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/public/common/content_features.h" | 5 #include "content/public/common/content_features.h" |
| 6 | 6 |
| 7 namespace features { | 7 namespace features { |
| 8 | 8 |
| 9 // All features in alphabetical order. | 9 // All features in alphabetical order. |
| 10 | 10 |
| 11 // Downloads resumption will be controllable via a flag until it's enabled |
| 12 // permanently. See https://crbug.com/7648 |
| 13 const base::Feature kDownloadResumption{"DownloadResumption", |
| 14 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 15 |
| 11 // The Experimental Framework for controlling access to API experiments. | 16 // The Experimental Framework for controlling access to API experiments. |
| 12 const base::Feature kExperimentalFramework{"ExperimentalFramework", | 17 const base::Feature kExperimentalFramework{"ExperimentalFramework", |
| 13 base::FEATURE_DISABLED_BY_DEFAULT}; | 18 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 14 | 19 |
| 15 #if defined(OS_ANDROID) | 20 #if defined(OS_ANDROID) |
| 16 // FeatureList definition for the Seccomp field trial. | 21 // FeatureList definition for the Seccomp field trial. |
| 17 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 22 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 18 base::FEATURE_DISABLED_BY_DEFAULT}; | 23 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 19 #endif | 24 #endif |
| 20 | 25 |
| 21 } // namespace features | 26 } // namespace features |
| OLD | NEW |