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

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

Issue 942913002: [AppBanner] Blink implementation of an event when an install banner is shown. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments Created 5 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 // 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.
11 // Features without a status are not enabled anywhere by default. 11 // Features without a status are not enabled anywhere by default.
12 // 12 //
13 // "stable" features listed here should be rare, as anything which we've shipped stable 13 // "stable" features listed here should be rare, as anything which we've shipped stable
14 // can have its runtime flag removed soon after. 14 // can have its runtime flag removed soon after.
15 // 15 //
16 // condition=ENABLE_NAME is used for wrapping features in compile-time 16 // condition=ENABLE_NAME is used for wrapping features in compile-time
17 // #if ENABLE(FEATURE) guards. These are deprecated and should all be removed. 17 // #if ENABLE(FEATURE) guards. These are deprecated and should all be removed.
18 18
19 AnyPointerMediaQueries status=stable 19 AnyPointerMediaQueries status=stable
20 AppBanner status=experimental
20 ApplicationCache status=stable 21 ApplicationCache status=stable
21 AudioVideoTracks depends_on=Media, status=experimental 22 AudioVideoTracks depends_on=Media, status=experimental
22 AuthorShadowDOMForAnyElement 23 AuthorShadowDOMForAnyElement
23 BackgroundSync status=experimental 24 BackgroundSync status=experimental
24 BatteryStatus status=stable 25 BatteryStatus status=stable
25 Beacon status=stable 26 Beacon status=stable
26 // Enable bleeding-edge code to make Blink draw content faster. 27 // Enable bleeding-edge code to make Blink draw content faster.
27 // The changes enabled behind this flag are very likely to break lots of content . 28 // The changes enabled behind this flag are very likely to break lots of content .
28 // ** DO NOT use this flag unless you know what you are doing. ** 29 // ** DO NOT use this flag unless you know what you are doing. **
29 BleedingEdgeFastPaths 30 BleedingEdgeFastPaths
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 WebAnimationsAPI status=experimental 160 WebAnimationsAPI status=experimental
160 WebAudio condition=WEB_AUDIO, status=stable 161 WebAudio condition=WEB_AUDIO, status=stable
161 WebGLDraftExtensions status=experimental 162 WebGLDraftExtensions status=experimental
162 WebGLImageChromium 163 WebGLImageChromium
163 WebMIDI status=test 164 WebMIDI status=test
164 WebVTTRegions depends_on=Media, status=experimental 165 WebVTTRegions depends_on=Media, status=experimental
165 V8IdleTasks 166 V8IdleTasks
166 XSLT status=stable 167 XSLT status=stable
167 SVG1DOM status=stable 168 SVG1DOM status=stable
168 ScrollCustomization 169 ScrollCustomization
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698