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

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

Issue 2815003005: Integrate WebUSB with Feature Policy (Closed)
Patch Set: Fixed usb-allowed-by-feature-policy.https.sub.html 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 }, 386 },
387 { 387 {
388 name: "ExperimentalV8Extras", 388 name: "ExperimentalV8Extras",
389 status: "experimental", 389 status: "experimental",
390 }, 390 },
391 { 391 {
392 name: "FastMobileScrolling", 392 name: "FastMobileScrolling",
393 }, 393 },
394 { 394 {
395 name: "FeaturePolicy", 395 name: "FeaturePolicy",
396 implied_by: ["WebUSB"],
396 status: "experimental", 397 status: "experimental",
397 }, 398 },
398 { 399 {
399 name: "FeaturePolicyExperimentalFeatures", 400 name: "FeaturePolicyExperimentalFeatures",
400 status: "experimental", 401 status: "experimental",
401 }, 402 },
402 { 403 {
403 name:"FetchRequestCache", 404 name:"FetchRequestCache",
404 status: "experimental", 405 status: "experimental",
405 }, 406 },
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 { 1063 {
1063 name: "Worklet", 1064 name: "Worklet",
1064 status: "experimental", 1065 status: "experimental",
1065 }, 1066 },
1066 { 1067 {
1067 name: "XSLT", 1068 name: "XSLT",
1068 status: "stable", 1069 status: "stable",
1069 }, 1070 },
1070 ], 1071 ],
1071 } 1072 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698