| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 extern const char kScrollPixels[]; | 272 extern const char kScrollPixels[]; |
| 273 #endif | 273 #endif |
| 274 | 274 |
| 275 #if defined(OS_MACOSX) || defined(OS_WIN) | 275 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 276 extern const char kUseSystemSSL[]; | 276 extern const char kUseSystemSSL[]; |
| 277 #endif | 277 #endif |
| 278 | 278 |
| 279 #if defined(OS_POSIX) | 279 #if defined(OS_POSIX) |
| 280 extern const char kEnableCrashReporter[]; | 280 extern const char kEnableCrashReporter[]; |
| 281 extern const char kNoProcessSingletonDialog[]; | 281 extern const char kNoProcessSingletonDialog[]; |
| 282 #if !defined(OS_MACOSX) |
| 283 extern const char kPasswordStore[]; |
| 284 #endif |
| 282 #endif | 285 #endif |
| 283 | 286 |
| 284 #if defined(OS_MACOSX) | 287 #if defined(OS_MACOSX) |
| 285 extern const char kDisableFlashCoreAnimation[]; | 288 extern const char kDisableFlashCoreAnimation[]; |
| 286 extern const char kEnableSandboxLogging[]; | 289 extern const char kEnableSandboxLogging[]; |
| 287 #else | 290 #else |
| 288 extern const char kKioskMode[]; | 291 extern const char kKioskMode[]; |
| 289 #endif | 292 #endif |
| 290 | 293 |
| 291 #ifndef NDEBUG | 294 #ifndef NDEBUG |
| (...skipping 14 matching lines...) Expand all Loading... |
| 306 #endif | 309 #endif |
| 307 // Return true if the switches indicate the seccomp sandbox is enabled. | 310 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 308 bool SeccompSandboxEnabled(); | 311 bool SeccompSandboxEnabled(); |
| 309 | 312 |
| 310 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 313 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 311 // alphabetical order, or in one of the ifdefs (also in order in each section). | 314 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 312 | 315 |
| 313 } // namespace switches | 316 } // namespace switches |
| 314 | 317 |
| 315 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 318 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |