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 // 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 "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 extern const wchar_t kPluginStartupDialog[]; | 23 extern const wchar_t kPluginStartupDialog[]; |
24 extern const wchar_t kPluginLauncher[]; | 24 extern const wchar_t kPluginLauncher[]; |
25 | 25 |
26 extern const wchar_t kTestingChannelID[]; | 26 extern const wchar_t kTestingChannelID[]; |
27 extern const wchar_t kHomePage[]; | 27 extern const wchar_t kHomePage[]; |
28 extern const wchar_t kRendererProcess[]; | 28 extern const wchar_t kRendererProcess[]; |
29 extern const wchar_t kZygoteProcess[]; | 29 extern const wchar_t kZygoteProcess[]; |
30 extern const wchar_t kBrowserSubprocessPath[]; | 30 extern const wchar_t kBrowserSubprocessPath[]; |
31 extern const wchar_t kPluginProcess[]; | 31 extern const wchar_t kPluginProcess[]; |
32 extern const wchar_t kWorkerProcess[]; | 32 extern const wchar_t kWorkerProcess[]; |
| 33 extern const wchar_t kNaClProcess[]; |
33 extern const wchar_t kUtilityProcess[]; | 34 extern const wchar_t kUtilityProcess[]; |
34 extern const wchar_t kProfileImportProcess[]; | 35 extern const wchar_t kProfileImportProcess[]; |
35 extern const wchar_t kSingleProcess[]; | 36 extern const wchar_t kSingleProcess[]; |
36 extern const wchar_t kProcessPerTab[]; | 37 extern const wchar_t kProcessPerTab[]; |
37 extern const wchar_t kProcessPerSite[]; | 38 extern const wchar_t kProcessPerSite[]; |
38 extern const wchar_t kInProcessPlugins[]; | 39 extern const wchar_t kInProcessPlugins[]; |
39 extern const wchar_t kNoSandbox[]; | 40 extern const wchar_t kNoSandbox[]; |
40 extern const wchar_t kDisableAltWinstation[]; | 41 extern const wchar_t kDisableAltWinstation[]; |
41 extern const wchar_t kSafePlugins[]; | 42 extern const wchar_t kSafePlugins[]; |
42 extern const wchar_t kTrustedPlugins[]; | 43 extern const wchar_t kTrustedPlugins[]; |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 extern const wchar_t kDisablePopupBlocking[]; | 127 extern const wchar_t kDisablePopupBlocking[]; |
127 extern const wchar_t kDisableJavaScript[]; | 128 extern const wchar_t kDisableJavaScript[]; |
128 extern const wchar_t kDisableJava[]; | 129 extern const wchar_t kDisableJava[]; |
129 extern const wchar_t kDisablePlugins[]; | 130 extern const wchar_t kDisablePlugins[]; |
130 extern const wchar_t kDisableImages[]; | 131 extern const wchar_t kDisableImages[]; |
131 extern const wchar_t kDisableWebSecurity[]; | 132 extern const wchar_t kDisableWebSecurity[]; |
132 extern const wchar_t kEnableRemoteFonts[]; | 133 extern const wchar_t kEnableRemoteFonts[]; |
133 | 134 |
134 extern const wchar_t kUseLowFragHeapCrt[]; | 135 extern const wchar_t kUseLowFragHeapCrt[]; |
135 | 136 |
| 137 extern const wchar_t kInternalNaCl[]; |
| 138 |
136 #ifndef NDEBUG | 139 #ifndef NDEBUG |
137 extern const wchar_t kGearsPluginPathOverride[]; | 140 extern const wchar_t kGearsPluginPathOverride[]; |
138 #endif | 141 #endif |
139 | 142 |
140 extern const wchar_t kEnableFastback[]; | 143 extern const wchar_t kEnableFastback[]; |
141 | 144 |
142 extern const wchar_t kEnableSync[]; | 145 extern const wchar_t kEnableSync[]; |
143 | 146 |
144 extern const wchar_t kSdchFilter[]; | 147 extern const wchar_t kSdchFilter[]; |
145 | 148 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 | 249 |
247 extern const wchar_t kActivateOnLaunch[]; | 250 extern const wchar_t kActivateOnLaunch[]; |
248 | 251 |
249 #if defined(OS_LINUX) | 252 #if defined(OS_LINUX) |
250 extern const wchar_t kEnablePrinting[]; | 253 extern const wchar_t kEnablePrinting[]; |
251 #endif | 254 #endif |
252 | 255 |
253 } // namespace switches | 256 } // namespace switches |
254 | 257 |
255 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 258 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |