| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 status: "stable", | 651 status: "stable", |
| 652 }, | 652 }, |
| 653 { | 653 { |
| 654 name: "NotificationBadge", | 654 name: "NotificationBadge", |
| 655 status: "stable", | 655 status: "stable", |
| 656 }, | 656 }, |
| 657 { | 657 { |
| 658 name: "NotificationConstructor", | 658 name: "NotificationConstructor", |
| 659 status: "stable", | 659 status: "stable", |
| 660 }, | 660 }, |
| 661 // NotificationContentImage is not available in all platforms |
| 661 { | 662 { |
| 662 name: "NotificationContentImage", | 663 name: "NotificationContentImage", |
| 663 status: "stable", | 664 status: "test", |
| 664 }, | 665 }, |
| 665 { | 666 { |
| 666 name: "NotificationInlineReplies", | 667 name: "NotificationInlineReplies", |
| 667 status: "experimental", | 668 status: "experimental", |
| 668 }, | 669 }, |
| 669 { | 670 { |
| 670 name: "Notifications", | 671 name: "Notifications", |
| 671 status: "stable", | 672 status: "stable", |
| 672 }, | 673 }, |
| 673 { | 674 { |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 { | 1043 { |
| 1043 name: "Worklet", | 1044 name: "Worklet", |
| 1044 status: "experimental", | 1045 status: "experimental", |
| 1045 }, | 1046 }, |
| 1046 { | 1047 { |
| 1047 name: "XSLT", | 1048 name: "XSLT", |
| 1048 status: "stable", | 1049 status: "stable", |
| 1049 }, | 1050 }, |
| 1050 ], | 1051 ], |
| 1051 } | 1052 } |
| OLD | NEW |