| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 #if defined(OS_POSIX) | 318 #if defined(OS_POSIX) |
| 319 extern const char kEnableCrashReporter[]; | 319 extern const char kEnableCrashReporter[]; |
| 320 extern const char kNoProcessSingletonDialog[]; | 320 extern const char kNoProcessSingletonDialog[]; |
| 321 #if !defined(OS_MACOSX) | 321 #if !defined(OS_MACOSX) |
| 322 extern const char kPasswordStore[]; | 322 extern const char kPasswordStore[]; |
| 323 #endif | 323 #endif |
| 324 #endif | 324 #endif |
| 325 | 325 |
| 326 #if defined(OS_MACOSX) | 326 #if defined(OS_MACOSX) |
| 327 extern const char kDisableFlashCoreAnimation[]; | 327 extern const char kDisableFlashCoreAnimation[]; |
| 328 extern const char kEnableExposeForTabs[]; |
| 328 extern const char kEnableSandboxLogging[]; | 329 extern const char kEnableSandboxLogging[]; |
| 329 #else | 330 #else |
| 330 extern const char kKioskMode[]; | 331 extern const char kKioskMode[]; |
| 331 #endif | 332 #endif |
| 332 | 333 |
| 333 #ifndef NDEBUG | 334 #ifndef NDEBUG |
| 334 extern const char kGearsPluginPathOverride[]; | 335 extern const char kGearsPluginPathOverride[]; |
| 335 extern const char kInvalidateSyncLogin[]; | 336 extern const char kInvalidateSyncLogin[]; |
| 336 extern const char kInvalidateSyncXmppLogin[]; | 337 extern const char kInvalidateSyncXmppLogin[]; |
| 337 extern const char kWebSocketLiveExperimentHost[]; | 338 extern const char kWebSocketLiveExperimentHost[]; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 348 #endif | 349 #endif |
| 349 // Return true if the switches indicate the seccomp sandbox is enabled. | 350 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 350 bool SeccompSandboxEnabled(); | 351 bool SeccompSandboxEnabled(); |
| 351 | 352 |
| 352 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 353 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 353 // alphabetical order, or in one of the ifdefs (also in order in each section). | 354 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 354 | 355 |
| 355 } // namespace switches | 356 } // namespace switches |
| 356 | 357 |
| 357 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 358 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |