Chromium Code Reviews| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 244 # Only used by Layout Tests and inspector emulation. | 244 # Only used by Layout Tests and inspector emulation. |
| 245 mediaTypeOverride type=String, initial="", invalidate=MediaQuery | 245 mediaTypeOverride type=String, initial="", invalidate=MediaQuery |
| 246 displayModeOverride type=WebDisplayMode, initial=WebDisplayModeUndefined, invali date=MediaQuery | 246 displayModeOverride type=WebDisplayMode, initial=WebDisplayModeUndefined, invali date=MediaQuery |
| 247 | 247 |
| 248 # loadsImagesAutomatically only suppresses the network load of | 248 # loadsImagesAutomatically only suppresses the network load of |
| 249 # the image URL. A cached image will still be rendered if requested. | 249 # the image URL. A cached image will still be rendered if requested. |
| 250 loadsImagesAutomatically initial=false, invalidate=ImageLoading | 250 loadsImagesAutomatically initial=false, invalidate=ImageLoading |
| 251 imagesEnabled initial=true, invalidate=ImageLoading | 251 imagesEnabled initial=true, invalidate=ImageLoading |
| 252 imageAnimationPolicy type=ImageAnimationPolicy, initial=ImageAnimationPolicyAllo wed | 252 imageAnimationPolicy type=ImageAnimationPolicy, initial=ImageAnimationPolicyAllo wed |
| 253 | 253 |
| 254 # Number of outstanding and pending tokens allowed in the background HTML | |
| 255 # parser. A value of 0 indicates the parser should use its default value. | |
| 256 backgroundHtmlParserOutstandingTokenLimit type=int, initial=0 | |
| 257 backgroundHtmlParserPendingTokenLimit type=int, initial=0 | |
|
Nate Chapin
2015/06/11 18:48:23
Should these be unsigned?
Bryan McQuade
2015/06/12 14:12:59
Ah, didn't know that was supported. Changed. Thank
| |
| 258 | |
| 254 javaEnabled initial=false | 259 javaEnabled initial=false |
| 255 pluginsEnabled initial=false | 260 pluginsEnabled initial=false |
| 256 | 261 |
| 257 viewportEnabled initial=false, invalidate=ViewportDescription | 262 viewportEnabled initial=false, invalidate=ViewportDescription |
| 258 viewportMetaEnabled initial=false | 263 viewportMetaEnabled initial=false |
| 259 | 264 |
| 260 dnsPrefetchingEnabled initial=false, invalidate=DNSPrefetching | 265 dnsPrefetchingEnabled initial=false, invalidate=DNSPrefetching |
| 261 | 266 |
| 262 # FIXME: This is a temporary flag and should be removed | 267 # FIXME: This is a temporary flag and should be removed |
| 263 # when squashing is ready. (crbug.com/261605) | 268 # when squashing is ready. (crbug.com/261605) |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 325 useMobileViewportStyle initial=false, invalidate=ViewportRule | 330 useMobileViewportStyle initial=false, invalidate=ViewportRule |
| 326 | 331 |
| 327 # User style overrides for captions and subtitles | 332 # User style overrides for captions and subtitles |
| 328 textTrackBackgroundColor type=String | 333 textTrackBackgroundColor type=String |
| 329 textTrackFontFamily type=String | 334 textTrackFontFamily type=String |
| 330 textTrackFontStyle type=String | 335 textTrackFontStyle type=String |
| 331 textTrackFontVariant type=String | 336 textTrackFontVariant type=String |
| 332 textTrackTextColor type=String | 337 textTrackTextColor type=String |
| 333 textTrackTextShadow type=String | 338 textTrackTextShadow type=String |
| 334 textTrackTextSize type=String | 339 textTrackTextSize type=String |
| OLD | NEW |