OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // Defines all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
6 | 6 |
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H__ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H__ |
8 #define CHROME_COMMON_CHROME_SWITCHES_H__ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H__ |
9 | 9 |
10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 extern const wchar_t kTestShellStartupDialog[]; | 23 extern const wchar_t kTestShellStartupDialog[]; |
24 extern const wchar_t kPluginLauncher[]; | 24 extern const wchar_t kPluginLauncher[]; |
25 | 25 |
26 extern const wchar_t kProcessChannelID[]; | 26 extern const wchar_t kProcessChannelID[]; |
27 extern const wchar_t kTestingChannelID[]; | 27 extern const wchar_t kTestingChannelID[]; |
28 extern const wchar_t kHomePage[]; | 28 extern const wchar_t kHomePage[]; |
29 extern const wchar_t kBrowserStartRenderersManually[]; | 29 extern const wchar_t kBrowserStartRenderersManually[]; |
30 extern const wchar_t kRendererProcess[]; | 30 extern const wchar_t kRendererProcess[]; |
31 extern const wchar_t kRendererPath[]; | 31 extern const wchar_t kRendererPath[]; |
32 extern const wchar_t kPluginProcess[]; | 32 extern const wchar_t kPluginProcess[]; |
| 33 extern const wchar_t kWorkerProcess[]; |
33 extern const wchar_t kSingleProcess[]; | 34 extern const wchar_t kSingleProcess[]; |
34 extern const wchar_t kProcessPerTab[]; | 35 extern const wchar_t kProcessPerTab[]; |
35 extern const wchar_t kProcessPerSite[]; | 36 extern const wchar_t kProcessPerSite[]; |
36 extern const wchar_t kInProcessPlugins[]; | 37 extern const wchar_t kInProcessPlugins[]; |
37 extern const wchar_t kNoSandbox[]; | 38 extern const wchar_t kNoSandbox[]; |
38 extern const wchar_t kSafePlugins[]; | 39 extern const wchar_t kSafePlugins[]; |
39 extern const wchar_t kTrustedPlugins[]; | 40 extern const wchar_t kTrustedPlugins[]; |
40 extern const wchar_t kTestSandbox[]; | 41 extern const wchar_t kTestSandbox[]; |
41 extern const wchar_t kUserDataDir[]; | 42 extern const wchar_t kUserDataDir[]; |
42 extern const wchar_t kPluginDataDir[]; | 43 extern const wchar_t kPluginDataDir[]; |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 extern const wchar_t kEnableVideo[]; | 145 extern const wchar_t kEnableVideo[]; |
145 | 146 |
146 extern const wchar_t kTestName[]; | 147 extern const wchar_t kTestName[]; |
147 | 148 |
148 extern const wchar_t kRendererCmdPrefix[]; | 149 extern const wchar_t kRendererCmdPrefix[]; |
149 | 150 |
150 } // namespace switches | 151 } // namespace switches |
151 | 152 |
152 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ | 153 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ |
153 | 154 |
OLD | NEW |