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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 // Extra command line options for launching the GPU process (normally used | 638 // Extra command line options for launching the GPU process (normally used |
639 // for debugging). Use like renderer-cmd-prefix. | 639 // for debugging). Use like renderer-cmd-prefix. |
640 const char kGpuLauncher[] = "gpu-launcher"; | 640 const char kGpuLauncher[] = "gpu-launcher"; |
641 | 641 |
642 // Makes this process a GPU sub-process. | 642 // Makes this process a GPU sub-process. |
643 const char kGpuProcess[] = "gpu-process"; | 643 const char kGpuProcess[] = "gpu-process"; |
644 | 644 |
645 // Allow shmat system call in GPU sandbox. | 645 // Allow shmat system call in GPU sandbox. |
646 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; | 646 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; |
647 | 647 |
648 // Makes GPU sandbox failures nonfatal. | |
649 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal"; | |
650 | |
651 // Causes the GPU process to display a dialog on launch. | 648 // Causes the GPU process to display a dialog on launch. |
652 const char kGpuStartupDialog[] = "gpu-startup-dialog"; | 649 const char kGpuStartupDialog[] = "gpu-startup-dialog"; |
653 | 650 |
654 // Passes gpu vendor_id from browser process to GPU process. | 651 // Passes gpu vendor_id from browser process to GPU process. |
655 const char kGpuVendorID[] = "gpu-vendor-id"; | 652 const char kGpuVendorID[] = "gpu-vendor-id"; |
656 | 653 |
657 // These mappings only apply to the host resolver. | 654 // These mappings only apply to the host resolver. |
658 const char kHostResolverRules[] = "host-resolver-rules"; | 655 const char kHostResolverRules[] = "host-resolver-rules"; |
659 | 656 |
660 // Ignores certificate-related errors. | 657 // Ignores certificate-related errors. |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1046 #endif | 1043 #endif |
1047 | 1044 |
1048 #if defined(OS_POSIX) | 1045 #if defined(OS_POSIX) |
1049 // Causes the child processes to cleanly exit via calling exit(). | 1046 // Causes the child processes to cleanly exit via calling exit(). |
1050 const char kChildCleanExit[] = "child-clean-exit"; | 1047 const char kChildCleanExit[] = "child-clean-exit"; |
1051 #endif | 1048 #endif |
1052 | 1049 |
1053 // Don't dump stuff here, follow the same order as the header. | 1050 // Don't dump stuff here, follow the same order as the header. |
1054 | 1051 |
1055 } // namespace switches | 1052 } // namespace switches |
OLD | NEW |