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

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

Issue 2757673005: Image Capture: MediaStreamTrack::applyConstraints() (Closed)
Patch Set: guidou@ and reillyg@ comments 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 }, 561 },
562 { 562 {
563 name: "MediaStreamSpeech", 563 name: "MediaStreamSpeech",
564 status: "experimental", 564 status: "experimental",
565 }, 565 },
566 { 566 {
567 name: "MediaStreamTrackContentHint", 567 name: "MediaStreamTrackContentHint",
568 status: "experimental", 568 status: "experimental",
569 }, 569 },
570 { 570 {
571 name: "MediaTrackApplyConstraints",
572 implied_by: ["ImageCapture"],
573 status: "experimental",
574 },
575 {
571 name: "MediaTrackCapabilities", 576 name: "MediaTrackCapabilities",
572 implied_by: ["ImageCapture"], 577 implied_by: ["ImageCapture"],
573 status: "experimental", 578 status: "experimental",
574 }, 579 },
575 { 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.
(...skipping 449 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