Chromium Code Reviews| 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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 644 status: "stable", | 644 status: "stable", |
| 645 }, | 645 }, |
| 646 { | 646 { |
| 647 name: "NotificationBadge", | 647 name: "NotificationBadge", |
| 648 status: "stable", | 648 status: "stable", |
| 649 }, | 649 }, |
| 650 { | 650 { |
| 651 name: "NotificationConstructor", | 651 name: "NotificationConstructor", |
| 652 status: "stable", | 652 status: "stable", |
| 653 }, | 653 }, |
| 654 // NotificationContentImage is not available in all platforms | |
| 654 { | 655 { |
| 655 name: "NotificationContentImage", | 656 name: "NotificationContentImage", |
| 656 status: "stable", | 657 status: "test", |
|
foolip
2017/04/13 08:38:12
Can you keep status "stable" and disable it on Mac
| |
| 657 }, | 658 }, |
| 658 { | 659 { |
| 659 name: "NotificationInlineReplies", | 660 name: "NotificationInlineReplies", |
| 660 status: "experimental", | 661 status: "experimental", |
| 661 }, | 662 }, |
| 662 { | 663 { |
| 663 name: "Notifications", | 664 name: "Notifications", |
| 664 status: "stable", | 665 status: "stable", |
| 665 }, | 666 }, |
| 666 { | 667 { |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1039 { | 1040 { |
| 1040 name: "Worklet", | 1041 name: "Worklet", |
| 1041 status: "experimental", | 1042 status: "experimental", |
| 1042 }, | 1043 }, |
| 1043 { | 1044 { |
| 1044 name: "XSLT", | 1045 name: "XSLT", |
| 1045 status: "stable", | 1046 status: "stable", |
| 1046 }, | 1047 }, |
| 1047 ], | 1048 ], |
| 1048 } | 1049 } |
| OLD | NEW |