| 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 }, | 1060 }, |
| 1061 { | 1061 { |
| 1062 name: "WebVR", | 1062 name: "WebVR", |
| 1063 origin_trial_feature_name: "WebVR1.1", | 1063 origin_trial_feature_name: "WebVR1.1", |
| 1064 status: "test", | 1064 status: "test", |
| 1065 }, | 1065 }, |
| 1066 { | 1066 { |
| 1067 name: "WebVRExperimentalRendering", | 1067 name: "WebVRExperimentalRendering", |
| 1068 // Don't mark this as depends_on: ["WebVR"], we want to be able to turn | 1068 // Don't mark this as depends_on: ["WebVR"], we want to be able to turn |
| 1069 // it on for just origin trial sites where the dependency is unset. | 1069 // it on for just origin trial sites where the dependency is unset. |
| 1070 status: "experimental", | 1070 // We also need it for tests since the default mode requires re-entrant |
| 1071 // mojo event handling, and the Javascript mocks don't support that. |
| 1072 status: "test", |
| 1071 }, | 1073 }, |
| 1072 { | 1074 { |
| 1073 name: "WebVTTRegions", | 1075 name: "WebVTTRegions", |
| 1074 status: "experimental", | 1076 status: "experimental", |
| 1075 }, | 1077 }, |
| 1076 { | 1078 { |
| 1077 name: "Worklet", | 1079 name: "Worklet", |
| 1078 status: "experimental", | 1080 status: "experimental", |
| 1079 }, | 1081 }, |
| 1080 { | 1082 { |
| 1081 name: "XSLT", | 1083 name: "XSLT", |
| 1082 status: "stable", | 1084 status: "stable", |
| 1083 }, | 1085 }, |
| 1084 ], | 1086 ], |
| 1085 } | 1087 } |
| OLD | NEW |