| 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 }, | 659 }, |
| 660 { | 660 { |
| 661 name: "NetInfoDownlink", | 661 name: "NetInfoDownlink", |
| 662 status: "experimental", | 662 status: "experimental", |
| 663 }, | 663 }, |
| 664 { | 664 { |
| 665 name: "NetInfoDownlinkMax", | 665 name: "NetInfoDownlinkMax", |
| 666 status: "stable", | 666 status: "stable", |
| 667 }, | 667 }, |
| 668 { | 668 { |
| 669 name: "NetInfoEffectiveType", |
| 670 status: "experimental", |
| 671 }, |
| 672 { |
| 669 name: "NetInfoRtt", | 673 name: "NetInfoRtt", |
| 670 status: "experimental", | 674 status: "experimental", |
| 671 }, | 675 }, |
| 672 { | 676 { |
| 673 name: "NetworkInformation", | 677 name: "NetworkInformation", |
| 674 status: "stable", | 678 status: "stable", |
| 675 }, | 679 }, |
| 676 // Not a web exposed feature, enabled from the command line. | 680 // Not a web exposed feature, enabled from the command line. |
| 677 { | 681 { |
| 678 name: "NewRemotePlaybackPipeline", | 682 name: "NewRemotePlaybackPipeline", |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1091 { | 1095 { |
| 1092 name: "Worklet", | 1096 name: "Worklet", |
| 1093 status: "experimental", | 1097 status: "experimental", |
| 1094 }, | 1098 }, |
| 1095 { | 1099 { |
| 1096 name: "XSLT", | 1100 name: "XSLT", |
| 1097 status: "stable", | 1101 status: "stable", |
| 1098 }, | 1102 }, |
| 1099 ], | 1103 ], |
| 1100 } | 1104 } |
| OLD | NEW |