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

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

Issue 2757673005: Image Capture: MediaStreamTrack::applyConstraints() (Closed)
Patch Set: Created 3 years, 9 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 { 566 {
567 name: "MediaStreamTrackContentHint", 567 name: "MediaStreamTrackContentHint",
568 status: "experimental", 568 status: "experimental",
569 }, 569 },
570 { 570 {
571 name: "MediaTrackCapabilities", 571 name: "MediaTrackCapabilities",
572 implied_by: ["ImageCapture"], 572 implied_by: ["ImageCapture"],
573 status: "experimental", 573 status: "experimental",
574 }, 574 },
575 { 575 {
576 name: "MediaTrackConstraints",
Guido Urdaneta 2017/03/17 00:30:27 Since this is only for applyConstraints, call this
mcasas 2017/03/17 00:49:22 Done.
577 implied_by: ["ImageCapture"],
578 status: "experimental",
579 },
580 {
576 name: "MemoryInfoInWorkers", 581 name: "MemoryInfoInWorkers",
577 status: "experimental", 582 status: "experimental",
578 }, 583 },
579 // This is enabled by default on Windows only. The only part that's 584 // This is enabled by default on Windows only. The only part that's
580 // "experimental" is the support on other platforms. 585 // "experimental" is the support on other platforms.
581 { 586 {
582 name: "MiddleClickAutoscroll", 587 name: "MiddleClickAutoscroll",
583 status: "test", 588 status: "test",
584 }, 589 },
585 { 590 {
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
1030 }, 1035 },
1031 { 1036 {
1032 name: "MediaControlsOverlayPlayButton", 1037 name: "MediaControlsOverlayPlayButton",
1033 settable_from_internals: true, 1038 settable_from_internals: true,
1034 }, 1039 },
1035 { 1040 {
1036 name: "VideoFullscreenDetection", 1041 name: "VideoFullscreenDetection",
1037 } 1042 }
1038 ], 1043 ],
1039 } 1044 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698