| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 extern const char kLoginScreenSize[]; | 324 extern const char kLoginScreenSize[]; |
| 325 extern const char kTestLoadLibcros[]; | 325 extern const char kTestLoadLibcros[]; |
| 326 extern const char kLoginProfile[]; | 326 extern const char kLoginProfile[]; |
| 327 extern const char kLoginUser[]; | 327 extern const char kLoginUser[]; |
| 328 extern const char kLoginPassword[]; | 328 extern const char kLoginPassword[]; |
| 329 extern const char kLoginUserWithNewPassword[]; | 329 extern const char kLoginUserWithNewPassword[]; |
| 330 extern const char kParallelAuth[]; | 330 extern const char kParallelAuth[]; |
| 331 extern const char kCandidateWindowLang[]; | 331 extern const char kCandidateWindowLang[]; |
| 332 extern const char kGuestSession[]; | 332 extern const char kGuestSession[]; |
| 333 extern const char kStubCros[]; | 333 extern const char kStubCros[]; |
| 334 extern const char kStubCrosSettings[]; |
| 334 extern const char kScreenSaverUrl[]; | 335 extern const char kScreenSaverUrl[]; |
| 335 extern const char kCompressSystemFeedback[]; | 336 extern const char kCompressSystemFeedback[]; |
| 336 extern const char kAuthExtensionPath[]; | 337 extern const char kAuthExtensionPath[]; |
| 337 extern const char kEnterpriseEnrollmentInitialModulus[]; | 338 extern const char kEnterpriseEnrollmentInitialModulus[]; |
| 338 extern const char kEnterpriseEnrollmentModulusLimit[]; | 339 extern const char kEnterpriseEnrollmentModulusLimit[]; |
| 339 #ifndef NDEBUG | 340 #ifndef NDEBUG |
| 340 extern const char kOobeSkipPostLogin[]; | 341 extern const char kOobeSkipPostLogin[]; |
| 341 #endif | 342 #endif |
| 342 #endif | 343 #endif |
| 343 | 344 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 bool IsPrintPreviewEnabled(); | 385 bool IsPrintPreviewEnabled(); |
| 385 | 386 |
| 386 bool IsInBrowserThumbnailingEnabled(); | 387 bool IsInBrowserThumbnailingEnabled(); |
| 387 | 388 |
| 388 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 389 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 389 // alphabetical order, or in one of the ifdefs (also in order in each section). | 390 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 390 | 391 |
| 391 } // namespace switches | 392 } // namespace switches |
| 392 | 393 |
| 393 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 394 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |