| 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 #if defined(OS_CHROMEOS) | 362 #if defined(OS_CHROMEOS) |
| 363 // Keep switches in alphabetical order. | 363 // Keep switches in alphabetical order. |
| 364 extern const char kDisableGData[]; | 364 extern const char kDisableGData[]; |
| 365 extern const char kEnableNewOobe[]; | 365 extern const char kEnableNewOobe[]; |
| 366 extern const char kEnableTouchpadThreeFingerClick[]; | 366 extern const char kEnableTouchpadThreeFingerClick[]; |
| 367 extern const char kSkipOAuthLogin[]; | 367 extern const char kSkipOAuthLogin[]; |
| 368 extern const char kEnableDevicePolicy[]; | 368 extern const char kEnableDevicePolicy[]; |
| 369 extern const char kEnableDriveV2Api[]; | 369 extern const char kEnableDriveV2Api[]; |
| 370 extern const char kEnableGView[]; | 370 extern const char kEnableGView[]; |
| 371 extern const char kEnableKioskMode[]; | 371 extern const char kEnableKioskMode[]; |
| 372 extern const char kEnableMobileSetupDialog[]; | |
| 373 extern const char kEnableONCPolicy[]; | 372 extern const char kEnableONCPolicy[]; |
| 374 extern const char kEnableStaticIPConfig[]; | 373 extern const char kEnableStaticIPConfig[]; |
| 375 extern const char kEnableUnsupportedBluetoothDevices[]; | 374 extern const char kEnableUnsupportedBluetoothDevices[]; |
| 376 extern const char kExperimentalWallpaperUI[]; | 375 extern const char kExperimentalWallpaperUI[]; |
| 377 extern const char kKioskModeScreensaverPath[]; | 376 extern const char kKioskModeScreensaverPath[]; |
| 378 extern const char kLoginManager[]; | 377 extern const char kLoginManager[]; |
| 379 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 378 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
| 380 // purposes. | 379 // purposes. |
| 381 extern const char kLoginScreen[]; | 380 extern const char kLoginScreen[]; |
| 382 extern const char kLoginScreenSize[]; | 381 extern const char kLoginScreenSize[]; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 #else | 429 #else |
| 431 extern const char kEnablePrintPreview[]; | 430 extern const char kEnablePrintPreview[]; |
| 432 #endif | 431 #endif |
| 433 | 432 |
| 434 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 433 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 435 // alphabetical order, or in one of the ifdefs (also in order in each section). | 434 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 436 | 435 |
| 437 } // namespace switches | 436 } // namespace switches |
| 438 | 437 |
| 439 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 438 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |