| 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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 }, | 520 }, |
| 521 { | 521 { |
| 522 name: "MediaCaptureFromCanvas", | 522 name: "MediaCaptureFromCanvas", |
| 523 status: "stable", | 523 status: "stable", |
| 524 }, | 524 }, |
| 525 { | 525 { |
| 526 name: "MediaCaptureFromVideo", | 526 name: "MediaCaptureFromVideo", |
| 527 status: "experimental", | 527 status: "experimental", |
| 528 }, | 528 }, |
| 529 { | 529 { |
| 530 name: "MediaConstraints", | |
| 531 status: "stable", | |
| 532 }, | |
| 533 { | |
| 534 name: "MediaDocumentDownloadButton", | 530 name: "MediaDocumentDownloadButton", |
| 535 }, | 531 }, |
| 536 { | 532 { |
| 537 name: "MediaGetSettings", | |
| 538 status: "stable", | |
| 539 }, | |
| 540 { | |
| 541 name: "MediaQueryShape", | 533 name: "MediaQueryShape", |
| 542 status: "experimental", | 534 status: "experimental", |
| 543 }, | 535 }, |
| 544 // MediaSession is enabled by default on Android only. | 536 // MediaSession is enabled by default on Android only. |
| 545 // TODO(rbyers): Add parameter to specify platform. | 537 // TODO(rbyers): Add parameter to specify platform. |
| 546 { | 538 { |
| 547 name: "MediaSession", | 539 name: "MediaSession", |
| 548 status: "test", | 540 status: "test", |
| 549 }, | 541 }, |
| 550 { | 542 { |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 }, | 1023 }, |
| 1032 { | 1024 { |
| 1033 name: "MediaControlsOverlayPlayButton", | 1025 name: "MediaControlsOverlayPlayButton", |
| 1034 settable_from_internals: true, | 1026 settable_from_internals: true, |
| 1035 }, | 1027 }, |
| 1036 { | 1028 { |
| 1037 name: "VideoFullscreenDetection", | 1029 name: "VideoFullscreenDetection", |
| 1038 } | 1030 } |
| 1039 ], | 1031 ], |
| 1040 } | 1032 } |
| OLD | NEW |