| OLD | NEW |
| 1 { | 1 { |
| 2 // http://dev.chromium.org/blink/runtime-enabled-features | 2 // http://dev.chromium.org/blink/runtime-enabled-features |
| 3 // | 3 // |
| 4 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains | 4 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains |
| 5 // a class that stores static enablers for all experimental features. | 5 // a class that stores static enablers for all experimental features. |
| 6 | 6 |
| 7 parameters: { | 7 parameters: { |
| 8 // Each feature can be assigned a "status": | 8 // Each feature can be assigned a "status": |
| 9 // status=stable -> Enable this in all Blink configurations. We are committ
ed to these APIs indefinitely. | 9 // status=stable -> Enable this in all Blink configurations. We are committ
ed to these APIs indefinitely. |
| 10 // status=experimental -> In-progress features, Web Developers might play wi
th, but are not on by default in stable. | 10 // status=experimental -> In-progress features, Web Developers might play wi
th, but are not on by default in stable. |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 }, | 341 }, |
| 342 { | 342 { |
| 343 name: "DurableStorage", | 343 name: "DurableStorage", |
| 344 status: "stable", | 344 status: "stable", |
| 345 }, | 345 }, |
| 346 { | 346 { |
| 347 name: "ExpensiveBackgroundTimerThrottling", | 347 name: "ExpensiveBackgroundTimerThrottling", |
| 348 status: "experimental", | 348 status: "experimental", |
| 349 }, | 349 }, |
| 350 { | 350 { |
| 351 name: "FasterLocationReload", | |
| 352 status: "experimental", | |
| 353 }, | |
| 354 { | |
| 355 name: "FontCacheScaling", | 351 name: "FontCacheScaling", |
| 356 status: "test", | 352 status: "test", |
| 357 }, | 353 }, |
| 358 { | 354 { |
| 359 name: "ForceDisplayList2dCanvas", | 355 name: "ForceDisplayList2dCanvas", |
| 360 }, | 356 }, |
| 361 // See crbug.com/585250. | 357 // See crbug.com/585250. |
| 362 { | 358 { |
| 363 name: "ForceDisable2dCanvasCopyOnWrite", | 359 name: "ForceDisable2dCanvasCopyOnWrite", |
| 364 }, | 360 }, |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1027 { | 1023 { |
| 1028 name: "BlockLegacySubresources", | 1024 name: "BlockLegacySubresources", |
| 1029 status: "experimental", | 1025 status: "experimental", |
| 1030 }, | 1026 }, |
| 1031 { | 1027 { |
| 1032 name: "MediaControlsOverlayPlayButton", | 1028 name: "MediaControlsOverlayPlayButton", |
| 1033 settable_from_internals: true, | 1029 settable_from_internals: true, |
| 1034 } | 1030 } |
| 1035 ], | 1031 ], |
| 1036 } | 1032 } |
| OLD | NEW |