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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 extern const char kEnableGView[]; | 293 extern const char kEnableGView[]; |
294 extern const char kEnableLoginImages[]; | 294 extern const char kEnableLoginImages[]; |
295 extern const char kLoginManager[]; | 295 extern const char kLoginManager[]; |
296 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 296 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
297 // purposes. | 297 // purposes. |
298 extern const char kLoginScreen[]; | 298 extern const char kLoginScreen[]; |
299 extern const char kLoginScreenSize[]; | 299 extern const char kLoginScreenSize[]; |
300 extern const char kTestLoadLibcros[]; | 300 extern const char kTestLoadLibcros[]; |
301 extern const char kLoginProfile[]; | 301 extern const char kLoginProfile[]; |
302 extern const char kLoginUser[]; | 302 extern const char kLoginUser[]; |
| 303 extern const char kLoginPassword[]; |
303 extern const char kChromeosFrame[]; | 304 extern const char kChromeosFrame[]; |
304 extern const char kChromeosLogToFile[]; | 305 extern const char kChromeosLogToFile[]; |
305 extern const char kBWSI[]; | 306 extern const char kBWSI[]; |
| 307 extern const char kStubCros[]; |
306 #endif | 308 #endif |
307 | 309 |
308 #if defined(OS_LINUX) | 310 #if defined(OS_LINUX) |
309 extern const char kScrollPixels[]; | 311 extern const char kScrollPixels[]; |
310 #endif | 312 #endif |
311 | 313 |
312 #if defined(OS_MACOSX) || defined(OS_WIN) | 314 #if defined(OS_MACOSX) || defined(OS_WIN) |
313 extern const char kUseSystemSSL[]; | 315 extern const char kUseSystemSSL[]; |
314 #endif | 316 #endif |
315 | 317 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 #endif | 349 #endif |
348 // Return true if the switches indicate the seccomp sandbox is enabled. | 350 // Return true if the switches indicate the seccomp sandbox is enabled. |
349 bool SeccompSandboxEnabled(); | 351 bool SeccompSandboxEnabled(); |
350 | 352 |
351 // 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 |
352 // 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). |
353 | 355 |
354 } // namespace switches | 356 } // namespace switches |
355 | 357 |
356 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 358 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |