| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 textTrackTextSize type=String | 352 textTrackTextSize type=String |
| 353 | 353 |
| 354 # Margin for title-safe placement of cues with overscan, gives top and bottom ma
rgin size as | 354 # Margin for title-safe placement of cues with overscan, gives top and bottom ma
rgin size as |
| 355 # percentage of video element height (for horizontal text) into which cues will
not be placed. | 355 # percentage of video element height (for horizontal text) into which cues will
not be placed. |
| 356 textTrackMarginPercentage type=double, initial=0 | 356 textTrackMarginPercentage type=double, initial=0 |
| 357 | 357 |
| 358 lowPriorityIframes initial=false | 358 lowPriorityIframes initial=false |
| 359 | 359 |
| 360 reportWheelOverscroll initial=false | 360 reportWheelOverscroll initial=false |
| 361 | 361 |
| 362 mainResourceOnlyProgress initial=false | 362 completeProgressEarly initial=true |
| 363 | 363 |
| 364 # Do we want to try to save screen real estate in the media player by hiding | 364 # Do we want to try to save screen real estate in the media player by hiding |
| 365 # the volume slider / mute button? | 365 # the volume slider / mute button? |
| 366 preferHiddenVolumeControls initial=false | 366 preferHiddenVolumeControls initial=false |
| 367 | 367 |
| 368 # Controls for resource fetch prioritization. | 368 # Controls for resource fetch prioritization. |
| 369 # Overall rationale and details here: https://docs.google.com/document/d/1bCDuq9
H1ih9iNjgzyAL0gpwNFiEP4TZS-YLRp_RuMlc/edit?usp=sharing | 369 # Overall rationale and details here: https://docs.google.com/document/d/1bCDuq9
H1ih9iNjgzyAL0gpwNFiEP4TZS-YLRp_RuMlc/edit?usp=sharing |
| 370 fetchDeferLateScripts initial=false | 370 fetchDeferLateScripts initial=false |
| 371 fetchIncreaseFontPriority initial=false | 371 fetchIncreaseFontPriority initial=false |
| 372 fetchIncreaseAsyncScriptPriority initial=false | 372 fetchIncreaseAsyncScriptPriority initial=false |
| (...skipping 11 matching lines...) Expand all Loading... |
| 384 # The autoplay gesture override experiment is described in crbug.com/487345 . | 384 # The autoplay gesture override experiment is described in crbug.com/487345 . |
| 385 autoplayExperimentMode type=String, initial="off" | 385 autoplayExperimentMode type=String, initial="off" |
| 386 | 386 |
| 387 # When DevTools is emulating mobile device, frame resize may mean device size ha
s changed, | 387 # When DevTools is emulating mobile device, frame resize may mean device size ha
s changed, |
| 388 # which in turn affects media queries. | 388 # which in turn affects media queries. |
| 389 resizeIsDeviceSizeChange initial=false | 389 resizeIsDeviceSizeChange initial=false |
| 390 | 390 |
| 391 # Whether the browser process sends gesture events for wheel events. | 391 # Whether the browser process sends gesture events for wheel events. |
| 392 # Can be removed when crbug.com/598798 is fixed. | 392 # Can be removed when crbug.com/598798 is fixed. |
| 393 wheelGesturesEnabled initial=false | 393 wheelGesturesEnabled initial=false |
| OLD | NEW |