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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 extern const char kTabletUi[]; | 356 extern const char kTabletUi[]; |
357 #endif | 357 #endif |
358 | 358 |
359 #if defined(OS_CHROMEOS) | 359 #if defined(OS_CHROMEOS) |
360 // Keep switches in alphabetical order. | 360 // Keep switches in alphabetical order. |
361 extern const char kDisableGData[]; | 361 extern const char kDisableGData[]; |
362 extern const char kEnableNewOobe[]; | 362 extern const char kEnableNewOobe[]; |
363 extern const char kEnableTouchpadThreeFingerClick[]; | 363 extern const char kEnableTouchpadThreeFingerClick[]; |
364 extern const char kSkipOAuthLogin[]; | 364 extern const char kSkipOAuthLogin[]; |
365 extern const char kEnableDevicePolicy[]; | 365 extern const char kEnableDevicePolicy[]; |
| 366 extern const char kEnableDriveV2Api[]; |
366 extern const char kEnableGView[]; | 367 extern const char kEnableGView[]; |
367 extern const char kEnableKioskMode[]; | 368 extern const char kEnableKioskMode[]; |
368 extern const char kEnableMobileSetupDialog[]; | 369 extern const char kEnableMobileSetupDialog[]; |
369 extern const char kEnableONCPolicy[]; | 370 extern const char kEnableONCPolicy[]; |
370 extern const char kEnableStaticIPConfig[]; | 371 extern const char kEnableStaticIPConfig[]; |
371 extern const char kEnableUnsupportedBluetoothDevices[]; | 372 extern const char kEnableUnsupportedBluetoothDevices[]; |
372 extern const char kExperimentalWallpaperUI[]; | 373 extern const char kExperimentalWallpaperUI[]; |
373 extern const char kKioskModeScreensaverPath[]; | 374 extern const char kKioskModeScreensaverPath[]; |
374 extern const char kLoginManager[]; | 375 extern const char kLoginManager[]; |
375 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 376 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 #else | 427 #else |
427 extern const char kEnablePrintPreview[]; | 428 extern const char kEnablePrintPreview[]; |
428 #endif | 429 #endif |
429 | 430 |
430 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 431 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
431 // alphabetical order, or in one of the ifdefs (also in order in each section). | 432 // alphabetical order, or in one of the ifdefs (also in order in each section). |
432 | 433 |
433 } // namespace switches | 434 } // namespace switches |
434 | 435 |
435 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 436 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |