OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 extern const char kNaClLoaderProcess[]; | 159 extern const char kNaClLoaderProcess[]; |
160 extern const char kNaClStartupDialog[]; | 160 extern const char kNaClStartupDialog[]; |
161 extern const char kNewTabPage[]; | 161 extern const char kNewTabPage[]; |
162 extern const char kNoDefaultBrowserCheck[]; | 162 extern const char kNoDefaultBrowserCheck[]; |
163 extern const char kNoEvents[]; | 163 extern const char kNoEvents[]; |
164 extern const char kNoFirstRun[]; | 164 extern const char kNoFirstRun[]; |
165 extern const char kNoJsRandomness[]; | 165 extern const char kNoJsRandomness[]; |
166 extern const char kNoProxyServer[]; | 166 extern const char kNoProxyServer[]; |
167 extern const char kNoReferrers[]; | 167 extern const char kNoReferrers[]; |
168 extern const char kNoSandbox[]; | 168 extern const char kNoSandbox[]; |
169 extern const char kOmniBoxPopupCount[]; | |
170 extern const char kOpenInNewWindow[]; | 169 extern const char kOpenInNewWindow[]; |
171 extern const char kPackExtension[]; | 170 extern const char kPackExtension[]; |
172 extern const char kPackExtensionKey[]; | 171 extern const char kPackExtensionKey[]; |
173 extern const char kParentProfile[]; | 172 extern const char kParentProfile[]; |
174 extern const char kPlaybackMode[]; | 173 extern const char kPlaybackMode[]; |
175 extern const char kPluginDataDir[]; | 174 extern const char kPluginDataDir[]; |
176 extern const char kPluginLauncher[]; | 175 extern const char kPluginLauncher[]; |
177 extern const char kPluginPath[]; | 176 extern const char kPluginPath[]; |
178 extern const char kPluginProcess[]; | 177 extern const char kPluginProcess[]; |
179 extern const char kPluginStartupDialog[]; | 178 extern const char kPluginStartupDialog[]; |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 #endif | 288 #endif |
290 // Return true if the switches indicate the seccomp sandbox is enabled. | 289 // Return true if the switches indicate the seccomp sandbox is enabled. |
291 bool SeccompSandboxEnabled(); | 290 bool SeccompSandboxEnabled(); |
292 | 291 |
293 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 292 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
294 // alphabetical order, or in one of the ifdefs (also in order in each section). | 293 // alphabetical order, or in one of the ifdefs (also in order in each section). |
295 | 294 |
296 } // namespace switches | 295 } // namespace switches |
297 | 296 |
298 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 297 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |