| 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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 status: "test", | 635 status: "test", |
| 636 }, | 636 }, |
| 637 { | 637 { |
| 638 name: "MultipleColorStopPositions", | 638 name: "MultipleColorStopPositions", |
| 639 status: "experimental", | 639 status: "experimental", |
| 640 }, | 640 }, |
| 641 { | 641 { |
| 642 name: "NavigatorContentUtils", | 642 name: "NavigatorContentUtils", |
| 643 }, | 643 }, |
| 644 { | 644 { |
| 645 name: "NetInfoDownlink", |
| 646 status: "experimental", |
| 647 }, |
| 648 { |
| 645 name: "NetInfoDownlinkMax", | 649 name: "NetInfoDownlinkMax", |
| 646 status: "stable", | 650 status: "stable", |
| 647 }, | 651 }, |
| 648 { | 652 { |
| 653 name: "NetInfoRtt", |
| 654 status: "experimental", |
| 655 }, |
| 656 { |
| 649 name: "NetworkInformation", | 657 name: "NetworkInformation", |
| 650 status: "stable", | 658 status: "stable", |
| 651 }, | 659 }, |
| 652 // Not a web exposed feature, enabled from the command line. | 660 // Not a web exposed feature, enabled from the command line. |
| 653 { | 661 { |
| 654 name: "NewRemotePlaybackPipeline", | 662 name: "NewRemotePlaybackPipeline", |
| 655 }, | 663 }, |
| 656 { | 664 { |
| 657 name: "NotificationBadge", | 665 name: "NotificationBadge", |
| 658 status: "stable", | 666 status: "stable", |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1068 { | 1076 { |
| 1069 name: "Worklet", | 1077 name: "Worklet", |
| 1070 status: "experimental", | 1078 status: "experimental", |
| 1071 }, | 1079 }, |
| 1072 { | 1080 { |
| 1073 name: "XSLT", | 1081 name: "XSLT", |
| 1074 status: "stable", | 1082 status: "stable", |
| 1075 }, | 1083 }, |
| 1076 ], | 1084 ], |
| 1077 } | 1085 } |
| OLD | NEW |