| 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 disallowFetchForDocWrittenScriptsInMainFrameIfEffectively2G initial=false | 377 disallowFetchForDocWrittenScriptsInMainFrameIfEffectively2G initial=false |
| 378 | 378 |
| 379 # Whether to disallow network fetches for parser blocking scripts in the main | 379 # Whether to disallow network fetches for parser blocking scripts in the main |
| 380 # frame inserted via document.write, for users on slow connections. | 380 # frame inserted via document.write, for users on slow connections. |
| 381 disallowFetchForDocWrittenScriptsInMainFrameOnSlowConnections initial=false | 381 disallowFetchForDocWrittenScriptsInMainFrameOnSlowConnections initial=false |
| 382 | 382 |
| 383 # Whether to disallow network fetches for parser blocking scripts in the main | 383 # Whether to disallow network fetches for parser blocking scripts in the main |
| 384 # frame inserted via document.write, regardless of connection type. | 384 # frame inserted via document.write, regardless of connection type. |
| 385 disallowFetchForDocWrittenScriptsInMainFrame initial=false | 385 disallowFetchForDocWrittenScriptsInMainFrame initial=false |
| 386 | 386 |
| 387 # The autoplay gesture override experiment is described in crbug.com/487345 . | |
| 388 autoplayExperimentMode type=String, initial="off" | |
| 389 | |
| 390 # Whether to invalidate device-dependent media queries and restore scroll positi
ons | 387 # Whether to invalidate device-dependent media queries and restore scroll positi
ons |
| 391 # on frame resize assuming device rotation. | 388 # on frame resize assuming device rotation. |
| 392 mainFrameResizesAreOrientationChanges initial=false | 389 mainFrameResizesAreOrientationChanges initial=false |
| 393 | 390 |
| 394 # Ability to override the default 'passive' value in AddEventListenerOptions. Th
is | 391 # Ability to override the default 'passive' value in AddEventListenerOptions. Th
is |
| 395 # is useful to demonstrate the power of passive event listeners. This can be rem
oved | 392 # is useful to demonstrate the power of passive event listeners. This can be rem
oved |
| 396 # when there is greater adoption, interventions to force it on and associated de
vtools | 393 # when there is greater adoption, interventions to force it on and associated de
vtools |
| 397 # to enable it have been shipped. | 394 # to enable it have been shipped. |
| 398 passiveListenerDefault type=PassiveListenerDefault, initial=PassiveListenerDefau
lt::False | 395 passiveListenerDefault type=PassiveListenerDefault, initial=PassiveListenerDefau
lt::False |
| 399 | 396 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 428 | 425 |
| 429 # Whether download UI should be hidden for the current page content. | 426 # Whether download UI should be hidden for the current page content. |
| 430 hideDownloadUI initial=false | 427 hideDownloadUI initial=false |
| 431 | 428 |
| 432 # Whether or not to issue range requests for images and show placeholders. | 429 # Whether or not to issue range requests for images and show placeholders. |
| 433 fetchImagePlaceholders initial=false | 430 fetchImagePlaceholders initial=false |
| 434 | 431 |
| 435 # Whether the frame is a presentation receiver and should expose | 432 # Whether the frame is a presentation receiver and should expose |
| 436 # `navigator.presentation.receiver`. | 433 # `navigator.presentation.receiver`. |
| 437 presentationReceiver initial=false | 434 presentationReceiver initial=false |
| OLD | NEW |