OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // For tests, disable single thread scheduler and only manually composite. | 235 // For tests, disable single thread scheduler and only manually composite. |
236 const char kDisableSingleThreadProxyScheduler[] = | 236 const char kDisableSingleThreadProxyScheduler[] = |
237 "disable-single-thread-proxy-scheduler"; | 237 "disable-single-thread-proxy-scheduler"; |
238 | 238 |
239 // Disable smooth scrolling for testing. | 239 // Disable smooth scrolling for testing. |
240 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; | 240 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; |
241 | 241 |
242 // Disables the use of a 3D software rasterizer. | 242 // Disables the use of a 3D software rasterizer. |
243 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 243 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
244 | 244 |
| 245 // Disables the Web Speech API. |
| 246 const char kDisableSpeechAPI[] = "disable-speech-api"; |
| 247 |
245 // Disables SVG 1.1 DOM. | 248 // Disables SVG 1.1 DOM. |
246 const char kDisableSVG1DOM[] = "disable-svg1dom"; | 249 const char kDisableSVG1DOM[] = "disable-svg1dom"; |
247 | 250 |
248 // Disable text blob rendering. | 251 // Disable text blob rendering. |
249 const char kDisableTextBlobs[] = "disable-text-blobs"; | 252 const char kDisableTextBlobs[] = "disable-text-blobs"; |
250 | 253 |
251 // Disable multithreaded GPU compositing of web content. | 254 // Disable multithreaded GPU compositing of web content. |
252 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; | 255 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; |
253 | 256 |
254 // Disable multithreaded, compositor scrolling of web content. | 257 // Disable multithreaded, compositor scrolling of web content. |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 // Windows Vista and later. | 1006 // Windows Vista and later. |
1004 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1007 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1005 #endif | 1008 #endif |
1006 | 1009 |
1007 // Enables the use of NPAPI plugins. | 1010 // Enables the use of NPAPI plugins. |
1008 const char kEnableNpapi[] = "enable-npapi"; | 1011 const char kEnableNpapi[] = "enable-npapi"; |
1009 | 1012 |
1010 // Don't dump stuff here, follow the same order as the header. | 1013 // Don't dump stuff here, follow the same order as the header. |
1011 | 1014 |
1012 } // namespace switches | 1015 } // namespace switches |
OLD | NEW |