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