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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 status: "test", | 634 status: "test", |
635 }, | 635 }, |
636 { | 636 { |
637 name: "MultipleColorStopPositions", | 637 name: "MultipleColorStopPositions", |
638 status: "experimental", | 638 status: "experimental", |
639 }, | 639 }, |
640 { | 640 { |
641 name: "NavigatorContentUtils", | 641 name: "NavigatorContentUtils", |
642 }, | 642 }, |
643 { | 643 { |
| 644 name: "NetInfoDownlink", |
| 645 status: "experimental", |
| 646 }, |
| 647 { |
644 name: "NetInfoDownlinkMax", | 648 name: "NetInfoDownlinkMax", |
645 status: "stable", | 649 status: "stable", |
646 }, | 650 }, |
647 { | 651 { |
| 652 name: "NetInfoRtt", |
| 653 status: "experimental", |
| 654 }, |
| 655 { |
648 name: "NetworkInformation", | 656 name: "NetworkInformation", |
649 status: "stable", | 657 status: "stable", |
650 }, | 658 }, |
651 // Not a web exposed feature, enabled from the command line. | 659 // Not a web exposed feature, enabled from the command line. |
652 { | 660 { |
653 name: "NewRemotePlaybackPipeline", | 661 name: "NewRemotePlaybackPipeline", |
654 }, | 662 }, |
655 { | 663 { |
656 name: "NotificationBadge", | 664 name: "NotificationBadge", |
657 status: "stable", | 665 status: "stable", |
(...skipping 410 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 |