| 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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 263 |
| 264 // Disables the RemotePlayback API. | 264 // Disables the RemotePlayback API. |
| 265 const char kDisableRemotePlaybackAPI[] = "disable-remote-playback-api"; | 265 const char kDisableRemotePlaybackAPI[] = "disable-remote-playback-api"; |
| 266 | 266 |
| 267 // Turns off the accessibility in the renderer. | 267 // Turns off the accessibility in the renderer. |
| 268 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; | 268 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; |
| 269 | 269 |
| 270 // Prevent renderer process backgrounding when set. | 270 // Prevent renderer process backgrounding when set. |
| 271 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; | 271 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; |
| 272 | 272 |
| 273 // No not manage renderer process priority at all when set. |
| 274 const char kDisableRendererPriorityManagement[] = |
| 275 "disable-renderer-priority-management"; |
| 276 |
| 273 // Whether the resize lock is disabled. Default is false. This is generally only | 277 // Whether the resize lock is disabled. Default is false. This is generally only |
| 274 // useful for tests that want to force disabling. | 278 // useful for tests that want to force disabling. |
| 275 const char kDisableResizeLock[] = "disable-resize-lock"; | 279 const char kDisableResizeLock[] = "disable-resize-lock"; |
| 276 | 280 |
| 277 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). | 281 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). |
| 278 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; | 282 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; |
| 279 | 283 |
| 280 // Disable the setuid sandbox (Linux only). | 284 // Disable the setuid sandbox (Linux only). |
| 281 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; | 285 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; |
| 282 | 286 |
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1096 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1093 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1097 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1094 | 1098 |
| 1095 // Specifies the testcase used by the IPC fuzzer. | 1099 // Specifies the testcase used by the IPC fuzzer. |
| 1096 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1100 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1097 #endif | 1101 #endif |
| 1098 | 1102 |
| 1099 // Don't dump stuff here, follow the same order as the header. | 1103 // Don't dump stuff here, follow the same order as the header. |
| 1100 | 1104 |
| 1101 } // namespace switches | 1105 } // namespace switches |
| OLD | NEW |