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

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

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Fix tests and introduce RuntimeEnabled flag 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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 }, 950 },
951 { 951 {
952 name: "TrustedEventsDefaultAction", 952 name: "TrustedEventsDefaultAction",
953 status: "stable", 953 status: "stable",
954 }, 954 },
955 { 955 {
956 name: "UnclosedFormControlIsInvalid", 956 name: "UnclosedFormControlIsInvalid",
957 status: "experimental", 957 status: "experimental",
958 }, 958 },
959 { 959 {
960 name: "V8ContextSnapshot",
961 status: "test",
962 },
963 {
960 name: "V8IdleTasks", 964 name: "V8IdleTasks",
961 }, 965 },
962 { 966 {
963 name: "VibrateRequiresUserGesture", 967 name: "VibrateRequiresUserGesture",
964 status: "stable", 968 status: "stable",
965 }, 969 },
966 { 970 {
967 name: "VideoFullscreenDetection", 971 name: "VideoFullscreenDetection",
968 }, 972 },
969 { 973 {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 { 1065 {
1062 name: "Worklet", 1066 name: "Worklet",
1063 status: "experimental", 1067 status: "experimental",
1064 }, 1068 },
1065 { 1069 {
1066 name: "XSLT", 1070 name: "XSLT",
1067 status: "stable", 1071 status: "stable",
1068 }, 1072 },
1069 ], 1073 ],
1070 } 1074 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698