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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 301 | 301 |
| 302 # This value is set to false if the platform does not support fullscreen. | 302 # This value is set to false if the platform does not support fullscreen. |
| 303 # When set to false all the requests to enter fullscreen will return an error | 303 # When set to false all the requests to enter fullscreen will return an error |
| 304 # (fullscreenerror or webkitfullscreenerror) as specified in the standard: | 304 # (fullscreenerror or webkitfullscreenerror) as specified in the standard: |
| 305 # http://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen | 305 # http://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen |
| 306 fullscreenSupported initial=true | 306 fullscreenSupported initial=true |
| 307 | 307 |
| 308 # V8 supports different types of caching. Used by V8 bindings. | 308 # V8 supports different types of caching. Used by V8 bindings. |
| 309 v8CacheOptions type=V8CacheOptions, initial=V8CacheOptionsDefault | 309 v8CacheOptions type=V8CacheOptions, initial=V8CacheOptionsDefault |
| 310 | 310 |
| 311 # V8 code cache for CacheStorage supports three type strategies(none, normal and aggressive). | |
|
falken
2016/04/27 08:07:37
nit: "three types of strategies", space before "(n
horo
2016/04/27 08:15:36
Done.
| |
| 312 v8CacheStrategiesForCacheStorage type=V8CacheStrategiesForCacheStorage, initial= V8CacheStrategiesForCacheStorageDefault | |
| 313 | |
| 311 # These values are bit fields for the properties of available pointing devices | 314 # These values are bit fields for the properties of available pointing devices |
| 312 # and may take on multiple values (e.g. laptop with touchpad and touchscreen | 315 # and may take on multiple values (e.g. laptop with touchpad and touchscreen |
| 313 # has pointerType coarse *and* fine). | 316 # has pointerType coarse *and* fine). |
| 314 availablePointerTypes type=int, initial=PointerTypeNone, invalidate=MediaQuery | 317 availablePointerTypes type=int, initial=PointerTypeNone, invalidate=MediaQuery |
| 315 availableHoverTypes type=int, initial=HoverTypeNone, invalidate=MediaQuery | 318 availableHoverTypes type=int, initial=HoverTypeNone, invalidate=MediaQuery |
| 316 | 319 |
| 317 # These values specify properties of the user's primary pointing device only. | 320 # These values specify properties of the user's primary pointing device only. |
| 318 primaryPointerType type=PointerType, initial=PointerTypeNone, invalidate=MediaQu ery | 321 primaryPointerType type=PointerType, initial=PointerTypeNone, invalidate=MediaQu ery |
| 319 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery | 322 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery |
| 320 | 323 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 393 # The autoplay gesture override experiment is described in crbug.com/487345 . | 396 # The autoplay gesture override experiment is described in crbug.com/487345 . |
| 394 autoplayExperimentMode type=String, initial="off" | 397 autoplayExperimentMode type=String, initial="off" |
| 395 | 398 |
| 396 # When DevTools is emulating mobile device, frame resize may mean device size ha s changed, | 399 # When DevTools is emulating mobile device, frame resize may mean device size ha s changed, |
| 397 # which in turn affects media queries. | 400 # which in turn affects media queries. |
| 398 resizeIsDeviceSizeChange initial=false | 401 resizeIsDeviceSizeChange initial=false |
| 399 | 402 |
| 400 # Whether the browser process sends gesture events for wheel events. | 403 # Whether the browser process sends gesture events for wheel events. |
| 401 # Can be removed when crbug.com/598798 is fixed. | 404 # Can be removed when crbug.com/598798 is fixed. |
| 402 wheelGesturesEnabled initial=false | 405 wheelGesturesEnabled initial=false |
| OLD | NEW |