OLD | NEW |
1 # Defines properties which are available on the Settings object. | 1 # Defines properties which are available on the Settings object. |
2 # | 2 # |
3 # Please think carefully before adding a new Setting. Some questions to | 3 # Please think carefully before adding a new Setting. Some questions to |
4 # consider are: | 4 # consider are: |
5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things | 5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things |
6 # which we support either values of at runtime. Features are set at renderer | 6 # which we support either values of at runtime. Features are set at renderer |
7 # process startup and are never changed. Features also tend to be set to a | 7 # process startup and are never changed. Features also tend to be set to a |
8 # value based on the platform or the stability of the code in question, where | 8 # value based on the platform or the stability of the code in question, where |
9 # as settings both codepaths need to be stable. | 9 # as settings both codepaths need to be stable. |
10 # - How will you ensure test coverage of all relevant values of your setting? | 10 # - How will you ensure test coverage of all relevant values of your setting? |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 xssAuditorEnabled initial=false | 96 xssAuditorEnabled initial=false |
97 unsafePluginPastingEnabled initial=true | 97 unsafePluginPastingEnabled initial=true |
98 treatIPAddressAsDomain initial=false | 98 treatIPAddressAsDomain initial=false |
99 | 99 |
100 acceleratedCompositingFor3DTransformsEnabled initial=true, invalidate=Accelerate
dCompositing | 100 acceleratedCompositingFor3DTransformsEnabled initial=true, invalidate=Accelerate
dCompositing |
101 acceleratedCompositingForVideoEnabled initial=true, invalidate=AcceleratedCompos
iting | 101 acceleratedCompositingForVideoEnabled initial=true, invalidate=AcceleratedCompos
iting |
102 acceleratedCompositingForPluginsEnabled initial=true, invalidate=AcceleratedComp
ositing | 102 acceleratedCompositingForPluginsEnabled initial=true, invalidate=AcceleratedComp
ositing |
103 acceleratedCompositingForCanvasEnabled initial=true, invalidate=AcceleratedCompo
siting | 103 acceleratedCompositingForCanvasEnabled initial=true, invalidate=AcceleratedCompo
siting |
104 acceleratedCompositingForAnimationEnabled initial=true, invalidate=AcceleratedCo
mpositing | 104 acceleratedCompositingForAnimationEnabled initial=true, invalidate=AcceleratedCo
mpositing |
105 acceleratedCompositingForFiltersEnabled initial=false, invalidate=AcceleratedCom
positing | 105 acceleratedCompositingForFiltersEnabled initial=false, invalidate=AcceleratedCom
positing |
106 acceleratedCompositingForFixedPositionEnabled initial=false | 106 acceleratedCompositingForFixedPositionEnabled initial=false, invalidate=Accelera
tedCompositing |
107 acceleratedCompositingForOverflowScrollEnabled initial=false, invalidate=Acceler
atedCompositing | 107 acceleratedCompositingForOverflowScrollEnabled initial=false, invalidate=Acceler
atedCompositing |
108 acceleratedCompositingForFixedRootBackgroundEnabled initial=false | 108 acceleratedCompositingForFixedRootBackgroundEnabled initial=false |
109 acceleratedCompositingForGpuRasterizationHintEnabled initial=false, invalidate=A
cceleratedCompositing | 109 acceleratedCompositingForGpuRasterizationHintEnabled initial=false, invalidate=A
cceleratedCompositing |
110 | 110 |
111 forceCompositingMode initial=false, invalidate=AcceleratedCompositing | 111 forceCompositingMode initial=false, invalidate=AcceleratedCompositing |
112 | 112 |
113 # Works only in conjunction with forceCompositingMode. | 113 # Works only in conjunction with forceCompositingMode. |
114 # crbug.com/304900 tracks removal once enabled on all platforms. | 114 # crbug.com/304900 tracks removal once enabled on all platforms. |
115 acceleratedCompositingForScrollableFramesEnabled initial=false, invalidate=Accel
eratedCompositing | 115 acceleratedCompositingForScrollableFramesEnabled initial=false, invalidate=Accel
eratedCompositing |
116 compositedScrollingForFramesEnabled initial=false | 116 compositedScrollingForFramesEnabled initial=false |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 | 281 |
282 # Clients that execute script should call ScriptController::canExecuteScripts() | 282 # Clients that execute script should call ScriptController::canExecuteScripts() |
283 # instead of this function. ScriptController::canExecuteScripts() checks the | 283 # instead of this function. ScriptController::canExecuteScripts() checks the |
284 # HTML sandbox, plug-in sandboxing, and other important details. | 284 # HTML sandbox, plug-in sandboxing, and other important details. |
285 scriptEnabled initial=false, invalidate=ScriptEnable | 285 scriptEnabled initial=false, invalidate=ScriptEnable |
286 | 286 |
287 # Compensates for poor text legibility on mobile devices. This value is | 287 # Compensates for poor text legibility on mobile devices. This value is |
288 # multiplied by the font scale factor when performing text autosizing of | 288 # multiplied by the font scale factor when performing text autosizing of |
289 # websites that do not set an explicit viewport description. | 289 # websites that do not set an explicit viewport description. |
290 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing | 290 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing |
OLD | NEW |