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

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

Issue 189313002: Implement '--gpu-sandbox-failures-nonfatal' flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 // Extra command line options for launching the GPU process (normally used 641 // Extra command line options for launching the GPU process (normally used
642 // for debugging). Use like renderer-cmd-prefix. 642 // for debugging). Use like renderer-cmd-prefix.
643 const char kGpuLauncher[] = "gpu-launcher"; 643 const char kGpuLauncher[] = "gpu-launcher";
644 644
645 // Makes this process a GPU sub-process. 645 // Makes this process a GPU sub-process.
646 const char kGpuProcess[] = "gpu-process"; 646 const char kGpuProcess[] = "gpu-process";
647 647
648 // Allow shmat system call in GPU sandbox. 648 // Allow shmat system call in GPU sandbox.
649 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm"; 649 const char kGpuSandboxAllowSysVShm[] = "gpu-sandbox-allow-sysv-shm";
650 650
651 // Makes GPU sandbox failures nonfatal.
652 const char kGpuSandboxFailuresNonfatal[] = "gpu-sandbox-failures-nonfatal";
653
651 // Causes the GPU process to display a dialog on launch. 654 // Causes the GPU process to display a dialog on launch.
652 const char kGpuStartupDialog[] = "gpu-startup-dialog"; 655 const char kGpuStartupDialog[] = "gpu-startup-dialog";
653 656
654 // Passes gpu vendor_id from browser process to GPU process. 657 // Passes gpu vendor_id from browser process to GPU process.
655 const char kGpuVendorID[] = "gpu-vendor-id"; 658 const char kGpuVendorID[] = "gpu-vendor-id";
656 659
657 // These mappings only apply to the host resolver. 660 // These mappings only apply to the host resolver.
658 const char kHostResolverRules[] = "host-resolver-rules"; 661 const char kHostResolverRules[] = "host-resolver-rules";
659 662
660 // Ignores certificate-related errors. 663 // Ignores certificate-related errors.
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 #endif 1055 #endif
1053 1056
1054 #if defined(OS_POSIX) 1057 #if defined(OS_POSIX)
1055 // Causes the child processes to cleanly exit via calling exit(). 1058 // Causes the child processes to cleanly exit via calling exit().
1056 const char kChildCleanExit[] = "child-clean-exit"; 1059 const char kChildCleanExit[] = "child-clean-exit";
1057 #endif 1060 #endif
1058 1061
1059 // Don't dump stuff here, follow the same order as the header. 1062 // Don't dump stuff here, follow the same order as the header.
1060 1063
1061 } // namespace switches 1064 } // namespace switches
OLDNEW
« content/common/sandbox_linux/sandbox_linux.cc ('K') | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698