| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 225 |
| 226 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). | 226 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). |
| 227 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; | 227 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; |
| 228 | 228 |
| 229 // Disable the setuid sandbox (Linux only). | 229 // Disable the setuid sandbox (Linux only). |
| 230 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; | 230 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; |
| 231 | 231 |
| 232 // Disable shared workers. | 232 // Disable shared workers. |
| 233 const char kDisableSharedWorkers[] = "disable-shared-workers"; | 233 const char kDisableSharedWorkers[] = "disable-shared-workers"; |
| 234 | 234 |
| 235 // For tests, disable single thread scheduler and only manually composite. | |
| 236 const char kDisableSingleThreadProxyScheduler[] = | |
| 237 "disable-single-thread-proxy-scheduler"; | |
| 238 | |
| 239 // Disable smooth scrolling for testing. | 235 // Disable smooth scrolling for testing. |
| 240 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; | 236 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; |
| 241 | 237 |
| 242 // Disables the use of a 3D software rasterizer. | 238 // Disables the use of a 3D software rasterizer. |
| 243 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 239 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
| 244 | 240 |
| 245 // Disables SVG 1.1 DOM. | 241 // Disables SVG 1.1 DOM. |
| 246 const char kDisableSVG1DOM[] = "disable-svg1dom"; | 242 const char kDisableSVG1DOM[] = "disable-svg1dom"; |
| 247 | 243 |
| 248 // Disable text blob rendering. | 244 // Disable text blob rendering. |
| (...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 // Windows Vista and later. | 999 // Windows Vista and later. |
| 1004 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1000 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1005 #endif | 1001 #endif |
| 1006 | 1002 |
| 1007 // Enables the use of NPAPI plugins. | 1003 // Enables the use of NPAPI plugins. |
| 1008 const char kEnableNpapi[] = "enable-npapi"; | 1004 const char kEnableNpapi[] = "enable-npapi"; |
| 1009 | 1005 |
| 1010 // Don't dump stuff here, follow the same order as the header. | 1006 // Don't dump stuff here, follow the same order as the header. |
| 1011 | 1007 |
| 1012 } // namespace switches | 1008 } // namespace switches |
| OLD | NEW |