| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 }, | 216 }, |
| 217 | 217 |
| 218 { | 218 { |
| 219 name: "mediaControlsOverlayPlayButtonEnabled", | 219 name: "mediaControlsOverlayPlayButtonEnabled", |
| 220 initial: false, | 220 initial: false, |
| 221 }, | 221 }, |
| 222 { | 222 { |
| 223 name: "mediaPlaybackRequiresUserGesture", | 223 name: "mediaPlaybackRequiresUserGesture", |
| 224 initial: false, | 224 initial: false, |
| 225 }, | 225 }, |
| 226 { |
| 227 name: "mediaPlaybackGestureWhitelistScope", |
| 228 type: "String", |
| 229 }, |
| 226 | 230 |
| 227 // This flags overrides mediaPlaybackRequiresUserGesture | 231 // This flags overrides mediaPlaybackRequiresUserGesture |
| 228 { | 232 { |
| 229 name: "crossOriginMediaPlaybackRequiresUserGesture", | 233 name: "crossOriginMediaPlaybackRequiresUserGesture", |
| 230 initial: false, | 234 initial: false, |
| 231 }, | 235 }, |
| 232 | 236 |
| 233 { | 237 { |
| 234 name: "presentationRequiresUserGesture", | 238 name: "presentationRequiresUserGesture", |
| 235 initial: true, | 239 initial: true, |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 }, | 911 }, |
| 908 | 912 |
| 909 // Whether the frame is a presentation receiver and should expose | 913 // Whether the frame is a presentation receiver and should expose |
| 910 // `navigator.presentation.receiver`. | 914 // `navigator.presentation.receiver`. |
| 911 { | 915 { |
| 912 name: "presentationReceiver", | 916 name: "presentationReceiver", |
| 913 initial: false, | 917 initial: false, |
| 914 }, | 918 }, |
| 915 ], | 919 ], |
| 916 } | 920 } |
| OLD | NEW |