OLD | NEW |
1 // http://dev.chromium.org/blink/runtime-enabled-features | 1 // http://dev.chromium.org/blink/runtime-enabled-features |
2 // | 2 // |
3 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains | 3 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains |
4 // a class that stores static enablers for all experimental features. | 4 // a class that stores static enablers for all experimental features. |
5 // | 5 // |
6 // Each feature can be assigned a "status": | 6 // Each feature can be assigned a "status": |
7 // status=stable -> Enable this in all Blink configurations. We are committed t
o these APIs indefinitely. | 7 // status=stable -> Enable this in all Blink configurations. We are committed t
o these APIs indefinitely. |
8 // status=experimental -> In-progress features, Web Developers might play with,
but are not on by default in stable. | 8 // status=experimental -> In-progress features, Web Developers might play with,
but are not on by default in stable. |
9 // status=test -> Enabled in ContentShell for testing, otherwise off. | 9 // status=test -> Enabled in ContentShell for testing, otherwise off. |
10 // Features without a status are not enabled anywhere by default. | 10 // Features without a status are not enabled anywhere by default. |
11 // | 11 // |
12 // "implied_by" or "depends_on" specifies relationship to other features: | 12 // "implied_by" or "depends_on" specifies relationship to other features: |
13 // implied_by=feature1[,feature2,...] -> The feature is automatically enabled if
any implied_by features is enabled; | 13 // implied_by=feature1[,feature2,...] -> The feature is automatically enabled if
any implied_by features is enabled; |
14 // depends_on=feature1[,feature2,...] -> The feature is enabled only if all depe
nds_on features are enabled. | 14 // depends_on=feature1[,feature2,...] -> The feature is enabled only if all depe
nds_on features are enabled. |
15 // Only one of "implied_by" and "depends_on" can be specified. | 15 // Only one of "implied_by" and "depends_on" can be specified. |
16 // | 16 // |
17 // "stable" features listed here should be rare, as anything which we've shipped
stable | 17 // "stable" features listed here should be rare, as anything which we've shipped
stable |
18 // can have its runtime flag removed soon after. | 18 // can have its runtime flag removed soon after. |
19 // | 19 // |
20 // origin_trial_feature_name=FEATURE_NAME is used to integrate the feature with | 20 // origin_trial_feature_name=FEATURE_NAME is used to integrate the feature with |
21 // the Origin Trials framework. The framework allows the feature to be enabled | 21 // the Origin Trials framework. The framework allows the feature to be enabled |
22 // at runtime on a per-page basis through a signed token for the corresponding | 22 // at runtime on a per-page basis through a signed token for the corresponding |
23 // feature name. Declaring the origin_trial_feature_name will cause a static | 23 // feature name. Declaring the origin_trial_feature_name will cause a static |
24 // method to be generated in OriginTrials.h/cpp. This static method allows the | 24 // method to be generated in OriginTrials.h/cpp. This static method allows the |
25 // feature implementation to check if it is enabled for the current context. | 25 // feature implementation to check if it is enabled for the current context. |
26 // | 26 // |
27 // settable_from_internals specifies whether a feature can be set from internals
.runtimeFlags, with the default | 27 // settable_from_internals specifies whether a feature can be set from internals
.runtimeFlags, with the default |
28 // being false. | 28 // being false. |
29 | 29 |
30 AppBanner status=stable | |
31 AlwaysUseComplexText status=stable | 30 AlwaysUseComplexText status=stable |
32 ApplicationCache status=stable | 31 ApplicationCache status=stable |
33 AudioOutputDevices status=stable | 32 AudioOutputDevices status=stable |
34 AudioVideoTracks status=experimental | 33 AudioVideoTracks status=experimental |
35 BackgroundSync status=stable | 34 BackgroundSync status=stable |
36 BackspaceDefaultHandler status=test | 35 BackspaceDefaultHandler status=test |
37 BroadcastChannel status=experimental | 36 BroadcastChannel status=experimental |
38 CacheIgnoreSearchOption status=experimental | 37 CacheIgnoreSearchOption status=experimental |
39 Canvas2dFixedRenderingMode status=test | 38 Canvas2dFixedRenderingMode status=test |
40 Canvas2dImageChromium status=experimental | 39 Canvas2dImageChromium status=experimental |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 AutoplayMutedVideos settable_from_internals=True | 240 AutoplayMutedVideos settable_from_internals=True |
242 VisualViewportAPI status=experimental | 241 VisualViewportAPI status=experimental |
243 WakeLock status=experimental | 242 WakeLock status=experimental |
244 WebFontsInterventionV2With2G | 243 WebFontsInterventionV2With2G |
245 WebFontsInterventionV2WithSlow2G | 244 WebFontsInterventionV2WithSlow2G |
246 WebFontsInterventionTrigger | 245 WebFontsInterventionTrigger |
247 Worklet status=experimental | 246 Worklet status=experimental |
248 WeakMemoryCache | 247 WeakMemoryCache |
249 DoNotUnlockSharedBuffer | 248 DoNotUnlockSharedBuffer |
250 ParseHTMLOnMainThread status=test | 249 ParseHTMLOnMainThread status=test |
OLD | NEW |