| 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 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 name: "doNotUpdateSelectionOnMutatingSelectionRange", | 924 name: "doNotUpdateSelectionOnMutatingSelectionRange", |
| 925 initial: false, | 925 initial: false, |
| 926 }, | 926 }, |
| 927 | 927 |
| 928 // Defines the autoplay policy to use. | 928 // Defines the autoplay policy to use. |
| 929 { | 929 { |
| 930 name: "autoplayPolicy", | 930 name: "autoplayPolicy", |
| 931 type: "AutoplayPolicy::Type", | 931 type: "AutoplayPolicy::Type", |
| 932 initial: "AutoplayPolicy::Type::kNoUserGestureRequired", | 932 initial: "AutoplayPolicy::Type::kNoUserGestureRequired", |
| 933 }, | 933 }, |
| 934 |
| 935 // |
| 936 // High contrast mode |
| 937 // |
| 938 { |
| 939 name: "highContrastMode", |
| 940 initial: "HighContrastMode::kOff", |
| 941 type: "HighContrastMode", |
| 942 }, |
| 943 { |
| 944 name: "highContrastGrayscale", |
| 945 initial: false, |
| 946 }, |
| 947 { |
| 948 name: "highContrastContrast", |
| 949 initial: 0, |
| 950 type: "double", |
| 951 } |
| 934 ], | 952 ], |
| 935 } | 953 } |
| OLD | NEW |