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

Side by Side Diff: Source/core/page/RuntimeEnabledFeatures.in

Issue 15018018: Autogenerate lists of "stable", "experimental" and "test" features from RuntimeEnabledFeatures.in (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ready for review Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/WebKit/chromium/src/WebRuntimeFeatures.cpp ('k') | Source/core/scripts/in_file.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains 1 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains
2 // a class that stores static enablers for all experimental features. Note that 2 // a class that stores static enablers for all experimental features. Note that
3 // the method names must line up with the JavaScript method they enable for code 3 // the method names must line up with the JavaScript method they enable for code
4 // generation to work properly. 4 // generation to work properly.
5 //
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.
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.
10 // Features without a status are not enabled anywhere by default.
11 //
12 // "stable" features listed here should be rare, as anything which we've shipped stable
13 // can have its runtime flag removed soon after.
14 //
15 // condition=ENABLE_NAME is used for wrapping features in compile-time
16 // #if ENABLE(FEATURE) guards. These are deprecated and should all be removed.
5 17
6 ApplicationCache 18 ApplicationCache status=stable
7 AuthorShadowDOMForAnyElement 19 AuthorShadowDOMForAnyElement
8 CSSCompositing condition=CSS_COMPOSITING 20 CanvasPath status=test
9 CSSExclusions 21 CSSCompositing condition=CSS_COMPOSITING, status=experimental
10 CSSRegions 22 CSSExclusions status=experimental
11 CanvasPath 23 CSSRegions status=experimental
12 CustomDOMElements 24 CustomDOMElements status=experimental
13 Database 25 Database status=stable
14 DeviceMotion 26 DeviceMotion
15 DeviceOrientation 27 DeviceOrientation status=stable
16 DialogElement 28 DialogElement status=experimental
17 DirectoryUpload 29 DirectoryUpload status=stable
18 EncryptedMedia condition=ENCRYPTED_MEDIA 30 EncryptedMedia condition=ENCRYPTED_MEDIA, status=stable
19 ExperimentalCanvasFeatures 31 ExperimentalCanvasFeatures status=test
20 ExperimentalContentSecurityPolicyFeatures 32 ExperimentalContentSecurityPolicyFeatures status=experimental
21 ExperimentalShadowDOM 33 ExperimentalShadowDOM status=test
22 ExperimentalWebSocket 34 ExperimentalWebSocket
23 FileSystem 35 FileSystem status=stable
24 FontLoadEvents 36 FontLoadEvents status=experimental
25 Fullscreen 37 Fullscreen status=stable
26 Gamepad 38 Gamepad status=stable
27 Geolocation 39 Geolocation status=stable
28 IMEAPI 40 IMEAPI
29 IndexedDB 41 IndexedDB status=stable
30 InputTypeDateTime condition=INPUT_TYPE_DATETIME_INCOMPLETE 42 InputTypeDateTime condition=INPUT_TYPE_DATETIME_INCOMPLETE, status=test
31 InputTypeWeek 43 InputTypeWeek status=stable
32 JavaScriptI18NAPI condition=JAVASCRIPT_I18N_API 44 JavaScriptI18NAPI condition=JAVASCRIPT_I18N_API, status=stable
33 LangAttributeAwareFormControlUI 45 LangAttributeAwareFormControlUI
34 LazyLayout 46 LazyLayout
35 LocalStorage 47 LocalStorage status=stable
36 Media custom 48 Media custom
37 MediaSource 49 MediaSource status=stable
38 MediaStream 50 MediaStream status=stable
39 Notifications 51 Notifications status=stable
40 PeerConnection depends_on=MediaStream 52 PeerConnection depends_on=MediaStream, status=stable
41 Quota 53 Quota status=stable
42 RequestAutocomplete 54 RequestAutocomplete status=test
43 ScriptedSpeech 55 ScriptedSpeech status=stable
44 SeamlessIFrames 56 SeamlessIFrames status=experimental
45 SessionStorage 57 SessionStorage status=stable
46 SharedWorker custom 58 SharedWorker custom
47 SpeechInput 59 SpeechInput status=stable
48 SpeechSynthesis 60 SpeechSynthesis
49 StyleScoped 61 StyleScoped status=experimental
50 Touch 62 Touch status=stable
51 VideoTrack 63 VideoTrack status=stable
52 WebAnimation 64 WebAnimation
53 WebAudio condition=WEB_AUDIO 65 WebAudio condition=WEB_AUDIO, status=stable
54 WebMIDI 66 WebMIDI status=test
55 WebPInAcceptHeader 67 WebPInAcceptHeader
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebRuntimeFeatures.cpp ('k') | Source/core/scripts/in_file.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698