| 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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 type: "PassiveListenerDefault", | 847 type: "PassiveListenerDefault", |
| 848 }, | 848 }, |
| 849 | 849 |
| 850 // Use default interpolation quality to scale bitmap images if quality is no
t determined | 850 // Use default interpolation quality to scale bitmap images if quality is no
t determined |
| 851 // in other ways. This can help us writing reftests containing scaled images
. | 851 // in other ways. This can help us writing reftests containing scaled images
. |
| 852 { | 852 { |
| 853 name: "useDefaultImageInterpolationQuality", | 853 name: "useDefaultImageInterpolationQuality", |
| 854 initial: false, | 854 initial: false, |
| 855 }, | 855 }, |
| 856 | 856 |
| 857 // Variant of the ParseHTMLOnMainThread experiment. One experiment immediate
ly | |
| 858 // tokenizes input bytes. The default is to tokenize with a post task. | |
| 859 { | |
| 860 name: "parseHTMLOnMainThreadSyncTokenize", | |
| 861 initial: false, | |
| 862 }, | |
| 863 | |
| 864 // Variant of the ParseHTMLOnMainThread experiment. This is designed to coal
esce | |
| 865 // TokenizedChunks when the experiment is running in threaded mode. | |
| 866 { | |
| 867 name: "parseHTMLOnMainThreadCoalesceChunks", | |
| 868 initial: false, | |
| 869 }, | |
| 870 | |
| 871 // Whether the CSSPreloadScanner is used for externally CSS preloads. NoPrel
oad | 857 // Whether the CSSPreloadScanner is used for externally CSS preloads. NoPrel
oad |
| 872 // indicates that the scanner will be used, but no preloads issued. | 858 // indicates that the scanner will be used, but no preloads issued. |
| 873 { | 859 { |
| 874 name: "cssExternalScannerNoPreload", | 860 name: "cssExternalScannerNoPreload", |
| 875 initial: false, | 861 initial: false, |
| 876 }, | 862 }, |
| 877 { | 863 { |
| 878 name: "cssExternalScannerPreload", | 864 name: "cssExternalScannerPreload", |
| 879 initial: false, | 865 initial: false, |
| 880 }, | 866 }, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 }, | 902 }, |
| 917 | 903 |
| 918 // Whether the frame is a presentation receiver and should expose | 904 // Whether the frame is a presentation receiver and should expose |
| 919 // `navigator.presentation.receiver`. | 905 // `navigator.presentation.receiver`. |
| 920 { | 906 { |
| 921 name: "presentationReceiver", | 907 name: "presentationReceiver", |
| 922 initial: false, | 908 initial: false, |
| 923 }, | 909 }, |
| 924 ], | 910 ], |
| 925 } | 911 } |
| OLD | NEW |