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

Side by Side Diff: Source/platform/RuntimeEnabledFeatures.in

Issue 1300833002: Enable MediaDevices.enumerateDevices and let promises-based getUserMedia behind a flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update global stable interface listing Created 5 years, 3 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
« no previous file with comments | « Source/modules/mediastream/NavigatorUserMedia.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // http://dev.chromium.org/blink/runtime-enabled-features 1 // http://dev.chromium.org/blink/runtime-enabled-features
2 // 2 //
3 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains 3 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains
4 // a class that stores static enablers for all experimental features. 4 // a class that stores static enablers for all experimental features.
5 // 5 //
6 // Each feature can be assigned a "status": 6 // Each feature can be assigned a "status":
7 // status=stable -> Enable this in all Blink configurations. We are committed t o these APIs indefinitely. 7 // status=stable -> Enable this in all Blink configurations. We are committed t o these APIs indefinitely.
8 // status=experimental -> In-progress features, Web Developers might play with, but are not on by default in stable. 8 // status=experimental -> In-progress features, Web Developers might play with, but are not on by default in stable.
9 // status=test -> Enabled in ContentShell for testing, otherwise off. 9 // status=test -> Enabled in ContentShell for testing, otherwise off.
10 // status=deprecated -> Alias for "test", will be removed at some point. 10 // status=deprecated -> Alias for "test", will be removed at some point.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 CSSScrollSnapPoints status=test 56 CSSScrollSnapPoints status=test
57 // getPropertyCSSValue, CSSValue, etc. will be removed once layout tests no long er depend on them. crbug.com/331608 57 // getPropertyCSSValue, CSSValue, etc. will be removed once layout tests no long er depend on them. crbug.com/331608
58 CustomSchemeHandler depends_on=NavigatorContentUtils, status=experimental 58 CustomSchemeHandler depends_on=NavigatorContentUtils, status=experimental
59 Database status=stable 59 Database status=stable
60 DecodeToYUV status=experimental 60 DecodeToYUV status=experimental
61 DeviceLight status=experimental 61 DeviceLight status=experimental
62 DisplayList2dCanvas status=stable 62 DisplayList2dCanvas status=stable
63 DurableStorage status=experimental 63 DurableStorage status=experimental
64 ForceDisplayList2dCanvas 64 ForceDisplayList2dCanvas
65 EncryptedMedia status=stable 65 EncryptedMedia status=stable
66 EnumerateDevices status=experimental
67 ExecCommandInJavaScript status=test 66 ExecCommandInJavaScript status=test
68 ComputedAccessibilityInfo status=experimental 67 ComputedAccessibilityInfo status=experimental
69 ExperimentalCanvasFeatures status=test 68 ExperimentalCanvasFeatures status=test
70 ExperimentalContentSecurityPolicyFeatures status=experimental 69 ExperimentalContentSecurityPolicyFeatures status=experimental
71 FastMobileScrolling 70 FastMobileScrolling
72 FileAPIBlobClose status=experimental 71 FileAPIBlobClose status=experimental
73 FileSystem status=stable 72 FileSystem status=stable
74 FormDataNewMethods status=experimental 73 FormDataNewMethods status=experimental
75 FullscreenUnprefixed status=test 74 FullscreenUnprefixed status=test
76 FrameTimingSupport status=experimental 75 FrameTimingSupport status=experimental
77 Geofencing status=experimental 76 Geofencing status=experimental
78 GeometryInterfaces status=test 77 GeometryInterfaces status=test
78 GetUserMedia depends_on=MediaDevices, status=experimental
79 GlobalCacheStorage status=stable 79 GlobalCacheStorage status=stable
80 ImageColorProfiles 80 ImageColorProfiles
81 ImageOrientation status=test 81 ImageOrientation status=test
82 ImageRenderingPixelated status=stable 82 ImageRenderingPixelated status=stable
83 IndexedDBExperimental status=experimental 83 IndexedDBExperimental status=experimental
84 InputDeviceCapabilities status=experimental 84 InputDeviceCapabilities status=experimental
85 InputModeAttribute status=experimental 85 InputModeAttribute status=experimental
86 KeyboardEventCode status=experimental 86 KeyboardEventCode status=experimental
87 KeyboardEventKey status=test 87 KeyboardEventKey status=test
88 LangAttributeAwareFormControlUI 88 LangAttributeAwareFormControlUI
89 LinkPreconnect status=stable 89 LinkPreconnect status=stable
90 LinkPreload status=experimental 90 LinkPreload status=experimental
91 LinkHeader status=stable 91 LinkHeader status=stable
92 FractionalScrollOffsets status=experimental 92 FractionalScrollOffsets status=experimental
93 Media status=stable 93 Media status=stable
94 MediaCapture 94 MediaCapture
95 MediaController depends_on=Media, status=experimental 95 MediaController depends_on=Media, status=experimental
96 MediaDevices status=stable
96 MediaSession 97 MediaSession
97 MediaSource status=stable 98 MediaSource status=stable
98 MediaSourceExperimental depends_on=MediaSource, status=experimental 99 MediaSourceExperimental depends_on=MediaSource, status=experimental
99 MediaStreamSpeech status=experimental 100 MediaStreamSpeech status=experimental
100 MemoryInfoInWorkers status=experimental 101 MemoryInfoInWorkers status=experimental
101 NavigatorConnect status=experimental 102 NavigatorConnect status=experimental
102 NavigatorContentUtils 103 NavigatorContentUtils
103 WebNFC status=experimental 104 WebNFC status=experimental
104 NetworkInformation status=stable 105 NetworkInformation status=stable
105 NewMediaPlaybackUi 106 NewMediaPlaybackUi
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 WebUSB status=experimental 181 WebUSB status=experimental
181 WebVR depends_on=GeometryInterfaces 182 WebVR depends_on=GeometryInterfaces
182 WebVTTRegions depends_on=Media, status=experimental 183 WebVTTRegions depends_on=Media, status=experimental
183 V8IdleTasks 184 V8IdleTasks
184 XSLT status=stable 185 XSLT status=stable
185 SVG1DOM status=stable 186 SVG1DOM status=stable
186 smil status=stable 187 smil status=stable
187 ScrollCustomization 188 ScrollCustomization
188 ScrollRestoration status=stable 189 ScrollRestoration status=stable
189 WakeLock status=experimental 190 WakeLock status=experimental
OLDNEW
« no previous file with comments | « Source/modules/mediastream/NavigatorUserMedia.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698