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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_features.h" | 6 #include "content/public/common/content_features.h" |
7 | 7 |
8 namespace features { | 8 namespace features { |
9 | 9 |
10 // All features in alphabetical order. | 10 // All features in alphabetical order. |
11 | 11 |
| 12 // Enables brotli "Accept-Encoding" advertising and "Content-Encoding" support. |
| 13 // Brotli format specification: http://www.ietf.org/id/draft-alakuijala-brotli |
| 14 const base::Feature kBrotliEncoding = { |
| 15 "brotli-encoding", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 16 |
12 // Downloads resumption will be controllable via a flag until it's enabled | 17 // Downloads resumption will be controllable via a flag until it's enabled |
13 // permanently. See https://crbug.com/7648 | 18 // permanently. See https://crbug.com/7648 |
14 const base::Feature kDownloadResumption{"DownloadResumption", | 19 const base::Feature kDownloadResumption{"DownloadResumption", |
15 base::FEATURE_ENABLED_BY_DEFAULT}; | 20 base::FEATURE_ENABLED_BY_DEFAULT}; |
16 | 21 |
17 // The Experimental Framework for controlling access to API experiments. | 22 // The Experimental Framework for controlling access to API experiments. |
18 const base::Feature kExperimentalFramework{"ExperimentalFramework", | 23 const base::Feature kExperimentalFramework{"ExperimentalFramework", |
19 base::FEATURE_DISABLED_BY_DEFAULT}; | 24 base::FEATURE_DISABLED_BY_DEFAULT}; |
20 | 25 |
21 #if defined(OS_ANDROID) | 26 #if defined(OS_ANDROID) |
22 // FeatureList definition for the Seccomp field trial. | 27 // FeatureList definition for the Seccomp field trial. |
23 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 28 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
24 base::FEATURE_DISABLED_BY_DEFAULT}; | 29 base::FEATURE_DISABLED_BY_DEFAULT}; |
25 #endif | 30 #endif |
26 | 31 |
27 } // namespace features | 32 } // namespace features |
OLD | NEW |