| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 extern const char kPasswordStore[]; | 342 extern const char kPasswordStore[]; |
| 343 #endif | 343 #endif |
| 344 | 344 |
| 345 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 345 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 346 extern const char kMigrateDataDirForSxS[]; | 346 extern const char kMigrateDataDirForSxS[]; |
| 347 #endif | 347 #endif |
| 348 | 348 |
| 349 #if defined(OS_MACOSX) | 349 #if defined(OS_MACOSX) |
| 350 extern const char kAppsKeepChromeAliveInTests[]; | 350 extern const char kAppsKeepChromeAliveInTests[]; |
| 351 extern const char kHostedAppQuitNotification[]; | 351 extern const char kHostedAppQuitNotification[]; |
| 352 extern const char kDisableAppInfoDialogMac[]; |
| 352 extern const char kDisableHostedAppShimCreation[]; | 353 extern const char kDisableHostedAppShimCreation[]; |
| 353 extern const char kDisableSystemFullscreenForTesting[]; | 354 extern const char kDisableSystemFullscreenForTesting[]; |
| 355 extern const char kEnableAppInfoDialogMac[]; |
| 354 extern const char kEnableTranslateNewUX[]; | 356 extern const char kEnableTranslateNewUX[]; |
| 355 extern const char kMetricsClientID[]; | 357 extern const char kMetricsClientID[]; |
| 356 extern const char kRelauncherProcess[]; | 358 extern const char kRelauncherProcess[]; |
| 357 #endif // defined(OS_MACOSX) | 359 #endif // defined(OS_MACOSX) |
| 358 | 360 |
| 359 #if defined(OS_WIN) | 361 #if defined(OS_WIN) |
| 360 extern const char kEnableCloudPrintXps[]; | 362 extern const char kEnableCloudPrintXps[]; |
| 361 extern const char kEnableProfileShortcutManager[]; | 363 extern const char kEnableProfileShortcutManager[]; |
| 362 extern const char kForceDesktop[]; | 364 extern const char kForceDesktop[]; |
| 363 extern const char kForceImmersive[]; | 365 extern const char kForceImmersive[]; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 #if defined(OS_CHROMEOS) | 403 #if defined(OS_CHROMEOS) |
| 402 bool PowerOverlayEnabled(); | 404 bool PowerOverlayEnabled(); |
| 403 #endif | 405 #endif |
| 404 | 406 |
| 405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 407 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 406 // alphabetical order, or in one of the ifdefs (also in order in each section). | 408 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 407 | 409 |
| 408 } // namespace switches | 410 } // namespace switches |
| 409 | 411 |
| 410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 412 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |