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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 685 }, | 685 }, |
| 686 { | 686 { |
| 687 name: "NetworkInformation", | 687 name: "NetworkInformation", |
| 688 status: "stable", | 688 status: "stable", |
| 689 }, | 689 }, |
| 690 // Not a web exposed feature, enabled from the command line. | 690 // Not a web exposed feature, enabled from the command line. |
| 691 { | 691 { |
| 692 name: "NewRemotePlaybackPipeline", | 692 name: "NewRemotePlaybackPipeline", |
| 693 }, | 693 }, |
| 694 { | 694 { |
| 695 name: "NotCompositeSmallScroller", | |
|
flackr
2017/06/05 17:50:41
Suggestion, how about SkipCompositingSmallScroller
yigu
2017/06/06 20:01:10
Done.
| |
| 696 status: "experimental", | |
|
flackr
2017/06/05 17:50:41
I think status experimental means this would be en
yigu
2017/06/06 20:01:10
Have updated it to "test".
| |
| 697 }, | |
| 698 { | |
| 695 name: "NotificationBadge", | 699 name: "NotificationBadge", |
| 696 status: "stable", | 700 status: "stable", |
| 697 }, | 701 }, |
| 698 { | 702 { |
| 699 name: "NotificationConstructor", | 703 name: "NotificationConstructor", |
| 700 status: "stable", | 704 status: "stable", |
| 701 }, | 705 }, |
| 702 // NotificationContentImage is not available in all platforms | 706 // NotificationContentImage is not available in all platforms |
| 703 { | 707 { |
| 704 name: "NotificationContentImage", | 708 name: "NotificationContentImage", |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1115 { | 1119 { |
| 1116 name: "Worklet", | 1120 name: "Worklet", |
| 1117 status: "experimental", | 1121 status: "experimental", |
| 1118 }, | 1122 }, |
| 1119 { | 1123 { |
| 1120 name: "XSLT", | 1124 name: "XSLT", |
| 1121 status: "stable", | 1125 status: "stable", |
| 1122 }, | 1126 }, |
| 1123 ], | 1127 ], |
| 1124 } | 1128 } |
| OLD | NEW |