| OLD | NEW |
| 1 # Defines properties which are available on the Settings object. | 1 # Defines properties which are available on the Settings object. |
| 2 # | 2 # |
| 3 # Please think carefully before adding a new Setting. Some questions to | 3 # Please think carefully before adding a new Setting. Some questions to |
| 4 # consider are: | 4 # consider are: |
| 5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things | 5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things |
| 6 # which we support either values of at runtime. Features are set at renderer | 6 # which we support either values of at runtime. Features are set at renderer |
| 7 # process startup and are never changed. Features also tend to be set to a | 7 # process startup and are never changed. Features also tend to be set to a |
| 8 # value based on the platform or the stability of the code in question, where | 8 # value based on the platform or the stability of the code in question, where |
| 9 # as settings both codepaths need to be stable. | 9 # as settings both codepaths need to be stable. |
| 10 # - How will you ensure test coverage of all relevant values of your setting? | 10 # - How will you ensure test coverage of all relevant values of your setting? |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 acceleratedCompositingForScrollableFramesEnabled initial=false | 116 acceleratedCompositingForScrollableFramesEnabled initial=false |
| 117 compositedScrollingForFramesEnabled initial=false | 117 compositedScrollingForFramesEnabled initial=false |
| 118 | 118 |
| 119 # 3D canvas (WebGL) support. | 119 # 3D canvas (WebGL) support. |
| 120 webGLEnabled initial=false | 120 webGLEnabled initial=false |
| 121 | 121 |
| 122 webGLErrorsToConsoleEnabled initial=true | 122 webGLErrorsToConsoleEnabled initial=true |
| 123 privilegedWebGLExtensionsEnabled initial=false | 123 privilegedWebGLExtensionsEnabled initial=false |
| 124 accelerated2dCanvasEnabled initial=false | 124 accelerated2dCanvasEnabled initial=false |
| 125 antialiased2dCanvasEnabled initial=true | 125 antialiased2dCanvasEnabled initial=true |
| 126 accelerated2dCanvasMSAASampleCount type=int, initial=0 |
| 126 | 127 |
| 127 # WebAudio support. | 128 # WebAudio support. |
| 128 webAudioEnabled initial=false | 129 webAudioEnabled initial=false |
| 129 | 130 |
| 130 fullScreenEnabled initial=false | 131 fullScreenEnabled initial=false |
| 131 asynchronousSpellCheckingEnabled initial=false | 132 asynchronousSpellCheckingEnabled initial=false |
| 132 memoryInfoEnabled initial=false | 133 memoryInfoEnabled initial=false |
| 133 | 134 |
| 134 hyperlinkAuditingEnabled initial=false | 135 hyperlinkAuditingEnabled initial=false |
| 135 allowDisplayOfInsecureContent initial=true | 136 allowDisplayOfInsecureContent initial=true |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 # behaves. TODO(wjmaclean): link to design document. | 242 # behaves. TODO(wjmaclean): link to design document. |
| 242 # crbug.com/304869 tracks removal. | 243 # crbug.com/304869 tracks removal. |
| 243 pinchVirtualViewportEnabled initial=false | 244 pinchVirtualViewportEnabled initial=false |
| 244 useSolidColorScrollbars initial=false | 245 useSolidColorScrollbars initial=false |
| 245 | 246 |
| 246 mainFrameClipsContent initial=true | 247 mainFrameClipsContent initial=true |
| 247 | 248 |
| 248 # Enable decoration shadow nodes to test password genration feature | 249 # Enable decoration shadow nodes to test password genration feature |
| 249 # crbug.com/114092. This flag should not be enabled for production. | 250 # crbug.com/114092. This flag should not be enabled for production. |
| 250 passwordGenerationDecorationEnabled initial=false | 251 passwordGenerationDecorationEnabled initial=false |
| OLD | NEW |