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