| OLD | NEW |
| 1 { | 1 { |
| 2 // Defines properties which are available on the Settings object. | 2 // Defines properties which are available on the Settings object. |
| 3 // | 3 // |
| 4 // Please think carefully before adding a new Setting. Some questions to | 4 // Please think carefully before adding a new Setting. Some questions to |
| 5 // consider are: | 5 // consider are: |
| 6 // - Should this be a RuntimeEnabledFeature instead? Settings are for things | 6 // - Should this be a RuntimeEnabledFeature instead? Settings are for things |
| 7 // which we support either values of at runtime. Features are set at render
er | 7 // which we support either values of at runtime. Features are set at render
er |
| 8 // process startup and are never changed. Features also tend to be set to a | 8 // process startup and are never changed. Features also tend to be set to a |
| 9 // value based on the platform or the stability of the code in question, whe
re | 9 // value based on the platform or the stability of the code in question, whe
re |
| 10 // as settings both codepaths need to be stable. | 10 // as settings both codepaths need to be stable. |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 name: "crossOriginMediaPlaybackRequiresUserGesture", | 233 name: "crossOriginMediaPlaybackRequiresUserGesture", |
| 234 initial: false, | 234 initial: false, |
| 235 }, | 235 }, |
| 236 | 236 |
| 237 { | 237 { |
| 238 name: "presentationRequiresUserGesture", | 238 name: "presentationRequiresUserGesture", |
| 239 initial: true, | 239 initial: true, |
| 240 }, | 240 }, |
| 241 | 241 |
| 242 { | 242 { |
| 243 name: "embeddedMediaExperienceEnabled", |
| 244 initial: false, |
| 245 }, |
| 246 |
| 247 { |
| 243 name: "scrollAnimatorEnabled", | 248 name: "scrollAnimatorEnabled", |
| 244 initial: true, | 249 initial: true, |
| 245 }, | 250 }, |
| 246 | 251 |
| 247 // Used to disable threaded, compositor scrolling for testing purposes. | 252 // Used to disable threaded, compositor scrolling for testing purposes. |
| 248 // crbug.com/410974 tracks removal once alternative solutions for selective | 253 // crbug.com/410974 tracks removal once alternative solutions for selective |
| 249 // main thread scrolling are supported. | 254 // main thread scrolling are supported. |
| 250 { | 255 { |
| 251 name: "threadedScrollingEnabled", | 256 name: "threadedScrollingEnabled", |
| 252 initial: true, | 257 initial: true, |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 }, | 923 }, |
| 919 | 924 |
| 920 // Whether Blink should show media controls when `controls` attribute is use
d. | 925 // Whether Blink should show media controls when `controls` attribute is use
d. |
| 921 { | 926 { |
| 922 name: "mediaControlsEnabled", | 927 name: "mediaControlsEnabled", |
| 923 initial: true, | 928 initial: true, |
| 924 invalidate: "MediaControls", | 929 invalidate: "MediaControls", |
| 925 }, | 930 }, |
| 926 ], | 931 ], |
| 927 } | 932 } |
| OLD | NEW |