| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 extern const char kTestLoadLibcros[]; | 296 extern const char kTestLoadLibcros[]; |
| 297 extern const char kProfile[]; | 297 extern const char kProfile[]; |
| 298 extern const char kLoginProfile[]; | 298 extern const char kLoginProfile[]; |
| 299 extern const char kLoginUser[]; | 299 extern const char kLoginUser[]; |
| 300 extern const char kChromeosFrame[]; | 300 extern const char kChromeosFrame[]; |
| 301 extern const char kChromeosLogToFile[]; | 301 extern const char kChromeosLogToFile[]; |
| 302 // TODO(denisromanov): Remove this flag when it is not needed for testing. | 302 // TODO(denisromanov): Remove this flag when it is not needed for testing. |
| 303 extern const char kStartupManifest[]; | 303 extern const char kStartupManifest[]; |
| 304 // TODO(denisromanov): Remove this flag when it is not needed for testing, too. | 304 // TODO(denisromanov): Remove this flag when it is not needed for testing, too. |
| 305 extern const char kServicesManifest[]; | 305 extern const char kServicesManifest[]; |
| 306 extern const char kUseFakeLibcros[]; | |
| 307 #endif | 306 #endif |
| 308 | 307 |
| 309 #if defined(OS_LINUX) | 308 #if defined(OS_LINUX) |
| 310 extern const char kScrollPixels[]; | 309 extern const char kScrollPixels[]; |
| 311 #endif | 310 #endif |
| 312 | 311 |
| 313 #if defined(OS_MACOSX) || defined(OS_WIN) | 312 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 314 extern const char kUseSystemSSL[]; | 313 extern const char kUseSystemSSL[]; |
| 315 #endif | 314 #endif |
| 316 | 315 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 347 #endif | 346 #endif |
| 348 // Return true if the switches indicate the seccomp sandbox is enabled. | 347 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 349 bool SeccompSandboxEnabled(); | 348 bool SeccompSandboxEnabled(); |
| 350 | 349 |
| 351 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 350 // 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). | 351 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 353 | 352 |
| 354 } // namespace switches | 353 } // namespace switches |
| 355 | 354 |
| 356 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 355 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |