OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 const wchar_t kTestingChannelID[] = L"testing-channel"; | 56 const wchar_t kTestingChannelID[] = L"testing-channel"; |
57 | 57 |
58 // The value of this switch specifies which page will be displayed | 58 // The value of this switch specifies which page will be displayed |
59 // in newly-opened tabs. We need this for testing purposes so | 59 // in newly-opened tabs. We need this for testing purposes so |
60 // that the UI tests don't depend on what comes up for http://google.com. | 60 // that the UI tests don't depend on what comes up for http://google.com. |
61 const wchar_t kHomePage[] = L"homepage"; | 61 const wchar_t kHomePage[] = L"homepage"; |
62 | 62 |
63 // Causes the process to run as renderer instead of as browser. | 63 // Causes the process to run as renderer instead of as browser. |
64 const wchar_t kRendererProcess[] = L"renderer"; | 64 const wchar_t kRendererProcess[] = L"renderer"; |
65 | 65 |
| 66 // Causes the process to run as a renderer zygote. |
| 67 const wchar_t kZygoteProcess[] = L"zygote"; |
| 68 |
66 // Path to the exe to run for the renderer and plugin subprocesses. | 69 // Path to the exe to run for the renderer and plugin subprocesses. |
67 const wchar_t kBrowserSubprocessPath[] = L"browser-subprocess-path"; | 70 const wchar_t kBrowserSubprocessPath[] = L"browser-subprocess-path"; |
68 | 71 |
69 // Causes the process to run as a plugin subprocess. | 72 // Causes the process to run as a plugin subprocess. |
70 const wchar_t kPluginProcess[] = L"plugin"; | 73 const wchar_t kPluginProcess[] = L"plugin"; |
71 | 74 |
72 // Causes the process to run as a worker subprocess. | 75 // Causes the process to run as a worker subprocess. |
73 const wchar_t kWorkerProcess[] = L"worker"; | 76 const wchar_t kWorkerProcess[] = L"worker"; |
74 | 77 |
75 // Causes the process to run as a utility subprocess. | 78 // Causes the process to run as a utility subprocess. |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 // can be a file path, in which case the file will be used as the new tab page. | 480 // can be a file path, in which case the file will be used as the new tab page. |
478 const wchar_t kNewNewTabPage[] = L"new-new-tab-page"; | 481 const wchar_t kNewNewTabPage[] = L"new-new-tab-page"; |
479 | 482 |
480 // Disables the default browser check. Useful for UI/browser tests where we want | 483 // Disables the default browser check. Useful for UI/browser tests where we want |
481 // to avoid having the default browser info-bar displayed. | 484 // to avoid having the default browser info-bar displayed. |
482 const wchar_t kNoDefaultBrowserCheck[] = L"no-default-browser-check"; | 485 const wchar_t kNoDefaultBrowserCheck[] = L"no-default-browser-check"; |
483 | 486 |
484 // Enables the benchmarking extensions. | 487 // Enables the benchmarking extensions. |
485 const wchar_t kEnableBenchmarking[] = L"enable-benchmarking"; | 488 const wchar_t kEnableBenchmarking[] = L"enable-benchmarking"; |
486 | 489 |
| 490 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
| 491 const wchar_t kZygoteCmdPrefix[] = L"zygote-cmd-prefix"; |
| 492 |
487 } // namespace switches | 493 } // namespace switches |
OLD | NEW |