Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: content/public/common/content_switches.cc

Issue 179983006: Don't start the SECCOMP sandbox early for Tegra124 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: formatting Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 648
649 // Makes this process a GPU sub-process. 649 // Makes this process a GPU sub-process.
650 const char kGpuProcess[] = "gpu-process"; 650 const char kGpuProcess[] = "gpu-process";
651 651
652 // Allow shmat system call in GPU sandbox. 652 // Allow shmat system call in GPU sandbox.
653 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; 653 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm";
654 654
655 // Makes GPU sandbox failures fatal. 655 // Makes GPU sandbox failures fatal.
656 const char kGpuSandboxFailuresFatal[] = "gpu-sandbox-failures-fatal"; 656 const char kGpuSandboxFailuresFatal[] = "gpu-sandbox-failures-fatal";
657 657
658 // Allow GPU sandbox to start later
659 const char kGpuSandboxStartAfterInitialization[] =
660 "gpu-sandbox-start-after-initialization";
661
658 // Causes the GPU process to display a dialog on launch. 662 // Causes the GPU process to display a dialog on launch.
659 const char kGpuStartupDialog[] = "gpu-startup-dialog"; 663 const char kGpuStartupDialog[] = "gpu-startup-dialog";
660 664
661 // Passes gpu vendor_id from browser process to GPU process. 665 // Passes gpu vendor_id from browser process to GPU process.
662 const char kGpuVendorID[] = "gpu-vendor-id"; 666 const char kGpuVendorID[] = "gpu-vendor-id";
663 667
664 // These mappings only apply to the host resolver. 668 // These mappings only apply to the host resolver.
665 const char kHostResolverRules[] = "host-resolver-rules"; 669 const char kHostResolverRules[] = "host-resolver-rules";
666 670
667 // Ignores certificate-related errors. 671 // Ignores certificate-related errors.
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 #endif 1053 #endif
1050 1054
1051 #if defined(OS_POSIX) 1055 #if defined(OS_POSIX)
1052 // Causes the child processes to cleanly exit via calling exit(). 1056 // Causes the child processes to cleanly exit via calling exit().
1053 const char kChildCleanExit[] = "child-clean-exit"; 1057 const char kChildCleanExit[] = "child-clean-exit";
1054 #endif 1058 #endif
1055 1059
1056 // Don't dump stuff here, follow the same order as the header. 1060 // Don't dump stuff here, follow the same order as the header.
1057 1061
1058 } // namespace switches 1062 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698