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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 extern const char kTestNaClSandbox[]; | 259 extern const char kTestNaClSandbox[]; |
260 extern const char kTestName[]; | 260 extern const char kTestName[]; |
261 extern const char kTestSandbox[]; | 261 extern const char kTestSandbox[]; |
262 extern const char kTestType[]; | 262 extern const char kTestType[]; |
263 extern const char kTestingChannelID[]; | 263 extern const char kTestingChannelID[]; |
264 extern const char kTopSites[]; | 264 extern const char kTopSites[]; |
265 extern const char kTrustedPlugins[]; | 265 extern const char kTrustedPlugins[]; |
266 extern const char kTryChromeAgain[]; | 266 extern const char kTryChromeAgain[]; |
267 extern const char kUninstall[]; | 267 extern const char kUninstall[]; |
268 extern const char kUseSpdy[]; | 268 extern const char kUseSpdy[]; |
269 extern const char kFixedHttpPort[]; | |
270 extern const char kFixedHttpsPort[]; | |
271 extern const char kIgnoreCertificateErrors[]; | 269 extern const char kIgnoreCertificateErrors[]; |
272 extern const char kMaxSpdySessionsPerDomain[]; | 270 extern const char kMaxSpdySessionsPerDomain[]; |
273 extern const char kUseLowFragHeapCrt[]; | 271 extern const char kUseLowFragHeapCrt[]; |
274 extern const char kUserAgent[]; | 272 extern const char kUserAgent[]; |
275 extern const char kUserDataDir[]; | 273 extern const char kUserDataDir[]; |
276 extern const char kUserScriptsDir[]; | 274 extern const char kUserScriptsDir[]; |
277 extern const char kUtilityCmdPrefix[]; | 275 extern const char kUtilityCmdPrefix[]; |
278 extern const char kUtilityProcess[]; | 276 extern const char kUtilityProcess[]; |
279 extern const char kUtilityProcessAllowedDir[]; | 277 extern const char kUtilityProcessAllowedDir[]; |
280 extern const char kVersion[]; | 278 extern const char kVersion[]; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 #endif | 345 #endif |
348 // Return true if the switches indicate the seccomp sandbox is enabled. | 346 // Return true if the switches indicate the seccomp sandbox is enabled. |
349 bool SeccompSandboxEnabled(); | 347 bool SeccompSandboxEnabled(); |
350 | 348 |
351 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 349 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
352 // alphabetical order, or in one of the ifdefs (also in order in each section). | 350 // alphabetical order, or in one of the ifdefs (also in order in each section). |
353 | 351 |
354 } // namespace switches | 352 } // namespace switches |
355 | 353 |
356 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 354 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |