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

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

Issue 2447143003: Use kRenderClientId command line flag when starting a render process (Closed)
Patch Set: Set client_id via a command line switch Created 4 years, 1 month 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 "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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 // Enables more web features over insecure connections. Designed to be used 744 // Enables more web features over insecure connections. Designed to be used
745 // for testing purposes only. 745 // for testing purposes only.
746 const char kReduceSecurityForTesting[] = "reduce-security-for-testing"; 746 const char kReduceSecurityForTesting[] = "reduce-security-for-testing";
747 747
748 // Register Pepper plugins (see pepper_plugin_list.cc for its format). 748 // Register Pepper plugins (see pepper_plugin_list.cc for its format).
749 const char kRegisterPepperPlugins[] = "register-pepper-plugins"; 749 const char kRegisterPepperPlugins[] = "register-pepper-plugins";
750 750
751 // Enables remote debug over HTTP on the specified port. 751 // Enables remote debug over HTTP on the specified port.
752 const char kRemoteDebuggingPort[] = "remote-debugging-port"; 752 const char kRemoteDebuggingPort[] = "remote-debugging-port";
753 753
754 const char kRendererClientId[] = "renderer-client-id";
755
754 // The contents of this flag are prepended to the renderer command line. 756 // The contents of this flag are prepended to the renderer command line.
755 // Useful values might be "valgrind" or "xterm -e gdb --args". 757 // Useful values might be "valgrind" or "xterm -e gdb --args".
756 const char kRendererCmdPrefix[] = "renderer-cmd-prefix"; 758 const char kRendererCmdPrefix[] = "renderer-cmd-prefix";
757 759
758 // Causes the process to run as renderer instead of as browser. 760 // Causes the process to run as renderer instead of as browser.
759 const char kRendererProcess[] = "renderer"; 761 const char kRendererProcess[] = "renderer";
760 762
761 // Overrides the default/calculated limit to the number of renderer processes. 763 // Overrides the default/calculated limit to the number of renderer processes.
762 // Very high values for this setting can lead to high memory/resource usage 764 // Very high values for this setting can lead to high memory/resource usage
763 // or instability. 765 // or instability.
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 // the given directory. Used primarily to gather samples for IPC fuzzing. 1072 // the given directory. Used primarily to gather samples for IPC fuzzing.
1071 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1073 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1072 1074
1073 // Specifies the testcase used by the IPC fuzzer. 1075 // Specifies the testcase used by the IPC fuzzer.
1074 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1076 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1075 #endif 1077 #endif
1076 1078
1077 // Don't dump stuff here, follow the same order as the header. 1079 // Don't dump stuff here, follow the same order as the header.
1078 1080
1079 } // namespace switches 1081 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698