| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 }, | 59 }, |
| 60 }, | 60 }, |
| 61 | 61 |
| 62 data: [ | 62 data: [ |
| 63 { | 63 { |
| 64 name: "Accelerated2dCanvas", | 64 name: "Accelerated2dCanvas", |
| 65 settable_from_internals: true, | 65 settable_from_internals: true, |
| 66 status: "stable", | 66 status: "stable", |
| 67 }, | 67 }, |
| 68 { | 68 { |
| 69 name: "AccessibilityObjectModel", |
| 70 settable_from_internals: true, |
| 71 status: "experimental", |
| 72 }, |
| 73 { |
| 69 name: "AudioOutputDevices", | 74 name: "AudioOutputDevices", |
| 70 status: "stable", | 75 status: "stable", |
| 71 }, | 76 }, |
| 72 { | 77 { |
| 73 name: "AudioVideoTracks", | 78 name: "AudioVideoTracks", |
| 74 status: "experimental", | 79 status: "experimental", |
| 75 }, | 80 }, |
| 76 { | 81 { |
| 77 name: "AudioWorklet", | 82 name: "AudioWorklet", |
| 78 status: "experimental", | 83 status: "experimental", |
| (...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1028 { | 1033 { |
| 1029 name: "Worklet", | 1034 name: "Worklet", |
| 1030 status: "experimental", | 1035 status: "experimental", |
| 1031 }, | 1036 }, |
| 1032 { | 1037 { |
| 1033 name: "XSLT", | 1038 name: "XSLT", |
| 1034 status: "stable", | 1039 status: "stable", |
| 1035 }, | 1040 }, |
| 1036 ], | 1041 ], |
| 1037 } | 1042 } |
| OLD | NEW |