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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 // Disables remote web font support. SVG font should always work whether this | 262 // Disables remote web font support. SVG font should always work whether this |
263 // option is specified or not. | 263 // option is specified or not. |
264 const char kDisableRemoteFonts[] = "disable-remote-fonts"; | 264 const char kDisableRemoteFonts[] = "disable-remote-fonts"; |
265 | 265 |
266 // Turns off the accessibility in the renderer. | 266 // Turns off the accessibility in the renderer. |
267 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; | 267 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; |
268 | 268 |
269 // Prevent renderer process backgrounding when set. | 269 // Prevent renderer process backgrounding when set. |
270 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; | 270 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; |
271 | 271 |
| 272 // Whether the resize lock is disabled. Default is false. This is generally only |
| 273 // useful for tests that want to force disabling. |
| 274 const char kDisableResizeLock[] = "disable-resize-lock"; |
| 275 |
272 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). | 276 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). |
273 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; | 277 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; |
274 | 278 |
275 // Disable the setuid sandbox (Linux only). | 279 // Disable the setuid sandbox (Linux only). |
276 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; | 280 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; |
277 | 281 |
278 // Disable shared workers. | 282 // Disable shared workers. |
279 const char kDisableSharedWorkers[] = "disable-shared-workers"; | 283 const char kDisableSharedWorkers[] = "disable-shared-workers"; |
280 | 284 |
281 // Disable smooth scrolling for testing. | 285 // Disable smooth scrolling for testing. |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1058 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1055 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1059 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1056 | 1060 |
1057 // Specifies the testcase used by the IPC fuzzer. | 1061 // Specifies the testcase used by the IPC fuzzer. |
1058 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1062 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1059 #endif | 1063 #endif |
1060 | 1064 |
1061 // Don't dump stuff here, follow the same order as the header. | 1065 // Don't dump stuff here, follow the same order as the header. |
1062 | 1066 |
1063 } // namespace switches | 1067 } // namespace switches |
OLD | NEW |