Chromium Code Reviews| 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 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 918 name: "presentationReceiver", | 918 name: "presentationReceiver", |
| 919 initial: false, | 919 initial: false, |
| 920 }, | 920 }, |
| 921 | 921 |
| 922 // Whether Blink should show media controls when `controls` attribute is use d. | 922 // Whether Blink should show media controls when `controls` attribute is use d. |
| 923 { | 923 { |
| 924 name: "mediaControlsEnabled", | 924 name: "mediaControlsEnabled", |
| 925 initial: true, | 925 initial: true, |
| 926 invalidate: "MediaControls", | 926 invalidate: "MediaControls", |
| 927 }, | 927 }, |
| 928 | |
| 929 // Whether we should not update selection attributes when mutating selection range. | |
|
tkent
2017/04/03 02:01:16
We should have a comment that we should remove the
Changwan Ryu
2017/04/03 15:31:49
Done.
| |
| 930 { | |
| 931 name: "doNotUpdateSelectionOnMutatingSelectionRange", | |
| 932 initial: false, | |
| 933 }, | |
| 928 ], | 934 ], |
| 929 } | 935 } |
| OLD | NEW |