| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 }, | 678 }, |
| 679 { | 679 { |
| 680 name: "NetworkInformation", | 680 name: "NetworkInformation", |
| 681 status: "stable", | 681 status: "stable", |
| 682 }, | 682 }, |
| 683 // Not a web exposed feature, enabled from the command line. | 683 // Not a web exposed feature, enabled from the command line. |
| 684 { | 684 { |
| 685 name: "NewRemotePlaybackPipeline", | 685 name: "NewRemotePlaybackPipeline", |
| 686 }, | 686 }, |
| 687 { | 687 { |
| 688 name: "NotCompositeSmallScroller", |
| 689 status: "experimental", |
| 690 }, |
| 691 { |
| 688 name: "NotificationBadge", | 692 name: "NotificationBadge", |
| 689 status: "stable", | 693 status: "stable", |
| 690 }, | 694 }, |
| 691 { | 695 { |
| 692 name: "NotificationConstructor", | 696 name: "NotificationConstructor", |
| 693 status: "stable", | 697 status: "stable", |
| 694 }, | 698 }, |
| 695 // NotificationContentImage is not available in all platforms | 699 // NotificationContentImage is not available in all platforms |
| 696 { | 700 { |
| 697 name: "NotificationContentImage", | 701 name: "NotificationContentImage", |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1098 { | 1102 { |
| 1099 name: "Worklet", | 1103 name: "Worklet", |
| 1100 status: "experimental", | 1104 status: "experimental", |
| 1101 }, | 1105 }, |
| 1102 { | 1106 { |
| 1103 name: "XSLT", | 1107 name: "XSLT", |
| 1104 status: "stable", | 1108 status: "stable", |
| 1105 }, | 1109 }, |
| 1106 ], | 1110 ], |
| 1107 } | 1111 } |
| OLD | NEW |