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

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

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Move snapshot maker to tools/ and work for comments Created 3 years, 5 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 9 // * status=stable: Enable this in all Blink configurations. We are
10 // committed to these APIs indefinitely. 10 // committed to these APIs indefinitely.
(...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 }, 1025 },
1026 { 1026 {
1027 name: "TrustedEventsDefaultAction", 1027 name: "TrustedEventsDefaultAction",
1028 status: "stable", 1028 status: "stable",
1029 }, 1029 },
1030 { 1030 {
1031 name: "UnclosedFormControlIsInvalid", 1031 name: "UnclosedFormControlIsInvalid",
1032 status: "experimental", 1032 status: "experimental",
1033 }, 1033 },
1034 { 1034 {
1035 name: "V8ContextSnapshot",
1036 status: "test",
1037 },
1038 {
1035 name: "V8IdleTasks", 1039 name: "V8IdleTasks",
1036 }, 1040 },
1037 { 1041 {
1038 name: "VibrateRequiresUserGesture", 1042 name: "VibrateRequiresUserGesture",
1039 status: "stable", 1043 status: "stable",
1040 }, 1044 },
1041 { 1045 {
1042 name: "VideoFullscreenDetection", 1046 name: "VideoFullscreenDetection",
1043 }, 1047 },
1044 { 1048 {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 { 1137 {
1134 name: "Worklet", 1138 name: "Worklet",
1135 status: "experimental", 1139 status: "experimental",
1136 }, 1140 },
1137 { 1141 {
1138 name: "XSLT", 1142 name: "XSLT",
1139 status: "stable", 1143 status: "stable",
1140 }, 1144 },
1141 ], 1145 ],
1142 } 1146 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698