| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 extern const char kLoginManager[]; | 249 extern const char kLoginManager[]; |
| 250 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 250 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
| 251 // purposes. | 251 // purposes. |
| 252 extern const char kLoginScreen[]; | 252 extern const char kLoginScreen[]; |
| 253 extern const char kLoginScreenSize[]; | 253 extern const char kLoginScreenSize[]; |
| 254 extern const char kTestLoadLibcros[]; | 254 extern const char kTestLoadLibcros[]; |
| 255 extern const char kProfile[]; | 255 extern const char kProfile[]; |
| 256 extern const char kLoginProfile[]; | 256 extern const char kLoginProfile[]; |
| 257 extern const char kLoginUser[]; | 257 extern const char kLoginUser[]; |
| 258 extern const char kChromeosFrame[]; | 258 extern const char kChromeosFrame[]; |
| 259 extern const char kStartupManifest[]; |
| 259 #endif | 260 #endif |
| 260 | 261 |
| 261 #if defined(OS_WIN) | 262 #if defined(OS_WIN) |
| 262 extern const char kUseSChannel[]; | 263 extern const char kUseSChannel[]; |
| 263 #endif | 264 #endif |
| 264 | 265 |
| 265 #if defined(OS_POSIX) | 266 #if defined(OS_POSIX) |
| 266 extern const char kEnableCrashReporter[]; | 267 extern const char kEnableCrashReporter[]; |
| 267 extern const char kNoProcessSingletonDialog[]; | 268 extern const char kNoProcessSingletonDialog[]; |
| 268 #endif | 269 #endif |
| (...skipping 23 matching lines...) Expand all Loading... |
| 292 #endif | 293 #endif |
| 293 // Return true if the switches indicate the seccomp sandbox is enabled. | 294 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 294 bool SeccompSandboxEnabled(); | 295 bool SeccompSandboxEnabled(); |
| 295 | 296 |
| 296 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 297 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 297 // alphabetical order, or in one of the ifdefs (also in order in each section). | 298 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 298 | 299 |
| 299 } // namespace switches | 300 } // namespace switches |
| 300 | 301 |
| 301 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 302 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |