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

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

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Work for most comments Created 3 years, 6 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 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 }, 992 },
993 { 993 {
994 name: "TrustedEventsDefaultAction", 994 name: "TrustedEventsDefaultAction",
995 status: "stable", 995 status: "stable",
996 }, 996 },
997 { 997 {
998 name: "UnclosedFormControlIsInvalid", 998 name: "UnclosedFormControlIsInvalid",
999 status: "experimental", 999 status: "experimental",
1000 }, 1000 },
1001 { 1001 {
1002 name: "V8ContextSnapshot",
1003 status: "test",
1004 },
1005 {
1002 name: "V8IdleTasks", 1006 name: "V8IdleTasks",
1003 }, 1007 },
1004 { 1008 {
1005 name: "VibrateRequiresUserGesture", 1009 name: "VibrateRequiresUserGesture",
1006 status: "stable", 1010 status: "stable",
1007 }, 1011 },
1008 { 1012 {
1009 name: "VideoFullscreenDetection", 1013 name: "VideoFullscreenDetection",
1010 }, 1014 },
1011 { 1015 {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 { 1105 {
1102 name: "Worklet", 1106 name: "Worklet",
1103 status: "experimental", 1107 status: "experimental",
1104 }, 1108 },
1105 { 1109 {
1106 name: "XSLT", 1110 name: "XSLT",
1107 status: "stable", 1111 status: "stable",
1108 }, 1112 },
1109 ], 1113 ],
1110 } 1114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698