| OLD | NEW |
| 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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 // Define a sample API for testing integration with the Origin Trials Framew
ork. | 689 // Define a sample API for testing integration with the Origin Trials Framew
ork. |
| 690 // The sample API is used in both unit and layout tests for the Origin Trial
s | 690 // The sample API is used in both unit and layout tests for the Origin Trial
s |
| 691 // Framework. Do not change this flag to stable, as it exists solely to gene
rate | 691 // Framework. Do not change this flag to stable, as it exists solely to gene
rate |
| 692 // code used by the sample API implementation. | 692 // code used by the sample API implementation. |
| 693 { | 693 { |
| 694 name: "OriginTrialsSampleAPI", | 694 name: "OriginTrialsSampleAPI", |
| 695 origin_trial_feature_name: "Frobulate", | 695 origin_trial_feature_name: "Frobulate", |
| 696 }, | 696 }, |
| 697 { | 697 { |
| 698 name: "OverlayScrollbars", | 698 name: "OverlayScrollbars", |
| 699 settable_from_internals: true, |
| 699 }, | 700 }, |
| 700 { | 701 { |
| 701 name: "PagePopup", | 702 name: "PagePopup", |
| 702 status: "stable", | 703 status: "stable", |
| 703 }, | 704 }, |
| 704 { | 705 { |
| 705 name: "PaintUnderInvalidationChecking", | 706 name: "PaintUnderInvalidationChecking", |
| 706 settable_from_internals: true, | 707 settable_from_internals: true, |
| 707 }, | 708 }, |
| 708 { | 709 { |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 { | 1058 { |
| 1058 name: "Worklet", | 1059 name: "Worklet", |
| 1059 status: "experimental", | 1060 status: "experimental", |
| 1060 }, | 1061 }, |
| 1061 { | 1062 { |
| 1062 name: "XSLT", | 1063 name: "XSLT", |
| 1063 status: "stable", | 1064 status: "stable", |
| 1064 }, | 1065 }, |
| 1065 ], | 1066 ], |
| 1066 } | 1067 } |
| OLD | NEW |