OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 | 329 |
330 #if defined(OS_CHROMEOS) | 330 #if defined(OS_CHROMEOS) |
331 extern const char kDisableGData[]; | 331 extern const char kDisableGData[]; |
332 extern const char kDisableLibcros[]; | 332 extern const char kDisableLibcros[]; |
333 extern const char kSkipOAuthLogin[]; | 333 extern const char kSkipOAuthLogin[]; |
334 extern const char kEnableDevicePolicy[]; | 334 extern const char kEnableDevicePolicy[]; |
335 extern const char kEnableGView[]; | 335 extern const char kEnableGView[]; |
336 extern const char kEnableKioskMode[]; | 336 extern const char kEnableKioskMode[]; |
337 extern const char kEnableMobileSetupDialog[]; | 337 extern const char kEnableMobileSetupDialog[]; |
338 extern const char kEnableONCPolicy[]; | 338 extern const char kEnableONCPolicy[]; |
339 extern const char kEnableSensors[]; | |
340 extern const char kEnableStaticIPConfig[]; | 339 extern const char kEnableStaticIPConfig[]; |
341 extern const char kKioskModeScreensaverPath[]; | 340 extern const char kKioskModeScreensaverPath[]; |
342 extern const char kLoginManager[]; | 341 extern const char kLoginManager[]; |
343 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 342 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
344 // purposes. | 343 // purposes. |
345 extern const char kLoginScreen[]; | 344 extern const char kLoginScreen[]; |
346 extern const char kLoginScreenSize[]; | 345 extern const char kLoginScreenSize[]; |
347 extern const char kTestLoadLibcros[]; | 346 extern const char kTestLoadLibcros[]; |
348 extern const char kLoginProfile[]; | 347 extern const char kLoginProfile[]; |
349 extern const char kLoginUser[]; | 348 extern const char kLoginUser[]; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 #else | 402 #else |
404 extern const char kEnablePrintPreview[]; | 403 extern const char kEnablePrintPreview[]; |
405 #endif | 404 #endif |
406 | 405 |
407 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 406 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
408 // alphabetical order, or in one of the ifdefs (also in order in each section). | 407 // alphabetical order, or in one of the ifdefs (also in order in each section). |
409 | 408 |
410 } // namespace switches | 409 } // namespace switches |
411 | 410 |
412 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 411 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |