Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: third_party/WebKit/Source/platform/RuntimeEnabledFeatures.json5

Issue 2844453002: Update CM API IDL to use SecureContext (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 }, 181 },
182 { 182 {
183 name: "ContextMenu", 183 name: "ContextMenu",
184 status: "experimental", 184 status: "experimental",
185 }, 185 },
186 { 186 {
187 name: "CorsRFC1918", 187 name: "CorsRFC1918",
188 status: "test", 188 status: "test",
189 }, 189 },
190 { 190 {
191 name: "CredentialManager",
192 status: "stable",
193 },
194 {
195 name: "CSS3Text", 191 name: "CSS3Text",
196 status: "experimental", 192 status: "experimental",
197 }, 193 },
198 { 194 {
199 name: "CSS3TextDecorations", 195 name: "CSS3TextDecorations",
200 status: "stable", 196 status: "stable",
201 }, 197 },
202 { 198 {
203 name: "CSSAdditiveAnimations", 199 name: "CSSAdditiveAnimations",
204 depends_on: ["StackedCSSPropertyAnimations"], 200 depends_on: ["StackedCSSPropertyAnimations"],
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 { 1058 {
1063 name: "Worklet", 1059 name: "Worklet",
1064 status: "experimental", 1060 status: "experimental",
1065 }, 1061 },
1066 { 1062 {
1067 name: "XSLT", 1063 name: "XSLT",
1068 status: "stable", 1064 status: "stable",
1069 }, 1065 },
1070 ], 1066 ],
1071 } 1067 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698