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