Chromium Code Reviews| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 355 #if defined(OS_MACOSX) | 355 #if defined(OS_MACOSX) |
| 356 extern const char kAppsKeepChromeAliveInTests[]; | 356 extern const char kAppsKeepChromeAliveInTests[]; |
| 357 extern const char kHostedAppQuitNotification[]; | 357 extern const char kHostedAppQuitNotification[]; |
| 358 extern const char kDisableAppInfoDialogMac[]; | 358 extern const char kDisableAppInfoDialogMac[]; |
| 359 extern const char kDisableAppWindowCycling[]; | 359 extern const char kDisableAppWindowCycling[]; |
| 360 extern const char kDisableHostedAppShimCreation[]; | 360 extern const char kDisableHostedAppShimCreation[]; |
| 361 extern const char kDisableMacViewsNativeAppWindows[]; | 361 extern const char kDisableMacViewsNativeAppWindows[]; |
| 362 extern const char kEnableAppInfoDialogMac[]; | 362 extern const char kEnableAppInfoDialogMac[]; |
| 363 extern const char kEnableAppWindowCycling[]; | 363 extern const char kEnableAppWindowCycling[]; |
| 364 extern const char kEnableMacViewsNativeAppWindows[]; | 364 extern const char kEnableMacViewsNativeAppWindows[]; |
| 365 extern const char kEnableToolkitViewsDialogsMac[]; | |
|
msw
2015/08/07 02:23:33
nit: kEnableMacViewsDialogs (to match the switch a
tapted
2015/08/07 03:40:17
Done.
| |
| 365 extern const char kEnableTranslateNewUX[]; | 366 extern const char kEnableTranslateNewUX[]; |
| 366 extern const char kMetricsClientID[]; | 367 extern const char kMetricsClientID[]; |
| 367 extern const char kRelauncherProcess[]; | 368 extern const char kRelauncherProcess[]; |
| 368 #endif // defined(OS_MACOSX) | 369 #endif // defined(OS_MACOSX) |
| 369 | 370 |
| 370 #if defined(OS_WIN) | 371 #if defined(OS_WIN) |
| 371 extern const char kEnableCloudPrintXps[]; | 372 extern const char kEnableCloudPrintXps[]; |
| 372 extern const char kEnableProfileShortcutManager[]; | 373 extern const char kEnableProfileShortcutManager[]; |
| 373 extern const char kForceDesktop[]; | 374 extern const char kForceDesktop[]; |
| 374 extern const char kForceImmersive[]; | 375 extern const char kForceImmersive[]; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 420 #if defined(ENABLE_TASK_MANAGER) | 421 #if defined(ENABLE_TASK_MANAGER) |
| 421 bool NewTaskManagerEnabled(); | 422 bool NewTaskManagerEnabled(); |
| 422 #endif // defined(ENABLE_TASK_MANAGER) | 423 #endif // defined(ENABLE_TASK_MANAGER) |
| 423 | 424 |
| 424 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 425 // alphabetical order, or in one of the ifdefs (also in order in each section). | 426 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 426 | 427 |
| 427 } // namespace switches | 428 } // namespace switches |
| 428 | 429 |
| 429 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |