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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 // Taints all <canvas> elements, regardless of origin. | 216 // Taints all <canvas> elements, regardless of origin. |
217 const char kDisableReadingFromCanvas[] = "disable-reading-from-canvas"; | 217 const char kDisableReadingFromCanvas[] = "disable-reading-from-canvas"; |
218 | 218 |
219 // Disables remote web font support. SVG font should always work whether this | 219 // Disables remote web font support. SVG font should always work whether this |
220 // option is specified or not. | 220 // option is specified or not. |
221 const char kDisableRemoteFonts[] = "disable-remote-fonts"; | 221 const char kDisableRemoteFonts[] = "disable-remote-fonts"; |
222 | 222 |
223 // Turns off the accessibility in the renderer. | 223 // Turns off the accessibility in the renderer. |
224 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; | 224 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; |
225 | 225 |
| 226 // Prevent renderer process backgrounding when set. |
| 227 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; |
| 228 |
226 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). | 229 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). |
227 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; | 230 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; |
228 | 231 |
229 // Disable the setuid sandbox (Linux only). | 232 // Disable the setuid sandbox (Linux only). |
230 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; | 233 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; |
231 | 234 |
232 // Disable shared workers. | 235 // Disable shared workers. |
233 const char kDisableSharedWorkers[] = "disable-shared-workers"; | 236 const char kDisableSharedWorkers[] = "disable-shared-workers"; |
234 | 237 |
235 // Disable smooth scrolling for testing. | 238 // Disable smooth scrolling for testing. |
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 // Windows Vista and later. | 997 // Windows Vista and later. |
995 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 998 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
996 #endif | 999 #endif |
997 | 1000 |
998 // Enables the use of NPAPI plugins. | 1001 // Enables the use of NPAPI plugins. |
999 const char kEnableNpapi[] = "enable-npapi"; | 1002 const char kEnableNpapi[] = "enable-npapi"; |
1000 | 1003 |
1001 // Don't dump stuff here, follow the same order as the header. | 1004 // Don't dump stuff here, follow the same order as the header. |
1002 | 1005 |
1003 } // namespace switches | 1006 } // namespace switches |
OLD | NEW |