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

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

Issue 1362703003: Remove obsolete deprecated status for REF generator script. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/build/scripts/make_runtime_features.py ('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.
11 // Features without a status are not enabled anywhere by default. 10 // Features without a status are not enabled anywhere by default.
12 // 11 //
13 // "implied_by" or "depends_on" specifies relationship to other features: 12 // "implied_by" or "depends_on" specifies relationship to other features:
14 // implied_by=feature1[,feature2,...] -> The feature is automatically enabled if any implied_by features is enabled; 13 // implied_by=feature1[,feature2,...] -> The feature is automatically enabled if any implied_by features is enabled;
15 // depends_on=feature1[,feature2,...] -> The feature is enabled only if all depe nds_on features are enabled. 14 // depends_on=feature1[,feature2,...] -> The feature is enabled only if all depe nds_on features are enabled.
16 // Only one of "implied_by" and "depends_on" can be specified. 15 // Only one of "implied_by" and "depends_on" can be specified.
17 // 16 //
18 // "stable" features listed here should be rare, as anything which we've shipped stable 17 // "stable" features listed here should be rare, as anything which we've shipped stable
19 // can have its runtime flag removed soon after. 18 // can have its runtime flag removed soon after.
20 // 19 //
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 // For simulating Android's overlay fullscreen video in layout tests on Linux. 118 // For simulating Android's overlay fullscreen video in layout tests on Linux.
120 ForceOverlayFullscreenVideo 119 ForceOverlayFullscreenVideo
121 OverlayScrollbars 120 OverlayScrollbars
122 PagePopup status=stable 121 PagePopup status=stable
123 PathOpsSVGClipping status=stable 122 PathOpsSVGClipping status=stable
124 PerformanceObserver status=experimental 123 PerformanceObserver status=experimental
125 Permissions status=stable 124 Permissions status=stable
126 PermissionsRequestRevoke status=experimental 125 PermissionsRequestRevoke status=experimental
127 PointerEvent 126 PointerEvent
128 PreciseMemoryInfo 127 PreciseMemoryInfo
129 PrefixedEncryptedMedia status=deprecated 128 PrefixedEncryptedMedia status=test
130 // This feature is deprecated and we are evangelizing affected sites. 129 // This feature is deprecated and we are evangelizing affected sites.
131 // See https://crbug.com/346236 for current status. 130 // See https://crbug.com/346236 for current status.
132 PrefixedVideoFullscreen status=stable 131 PrefixedVideoFullscreen status=stable
133 Presentation status=stable 132 Presentation status=stable
134 PromiseRejectionEvent status=experimental 133 PromiseRejectionEvent status=experimental
135 PushMessaging status=stable 134 PushMessaging status=stable
136 // Push messaging payloads are blocked on the Push API supporting encryption. 135 // Push messaging payloads are blocked on the Push API supporting encryption.
137 PushMessagingData status=test 136 PushMessagingData status=test
138 QuotaPromise status=experimental 137 QuotaPromise status=experimental
139 ReducedReferrerGranularity 138 ReducedReferrerGranularity
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 WebUSB status=experimental 188 WebUSB status=experimental
190 WebVR depends_on=GeometryInterfaces 189 WebVR depends_on=GeometryInterfaces
191 WebVTTRegions depends_on=Media, status=experimental 190 WebVTTRegions depends_on=Media, status=experimental
192 V8IdleTasks 191 V8IdleTasks
193 XSLT status=stable 192 XSLT status=stable
194 SVG1DOM status=stable 193 SVG1DOM status=stable
195 smil status=stable 194 smil status=stable
196 ScrollCustomization 195 ScrollCustomization
197 ScrollRestoration status=stable 196 ScrollRestoration status=stable
198 WakeLock status=experimental 197 WakeLock status=experimental
OLDNEW
« no previous file with comments | « Source/build/scripts/make_runtime_features.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698