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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 351 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
352 extern const char kMigrateDataDirForSxS[]; | 352 extern const char kMigrateDataDirForSxS[]; |
353 #endif | 353 #endif |
354 | 354 |
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 kDisableHostedAppsInWindows[]; |
361 extern const char kDisableMacViewsNativeAppWindows[]; | 362 extern const char kDisableMacViewsNativeAppWindows[]; |
362 extern const char kEnableAppInfoDialogMac[]; | 363 extern const char kEnableAppInfoDialogMac[]; |
363 extern const char kEnableAppWindowCycling[]; | 364 extern const char kEnableAppWindowCycling[]; |
| 365 extern const char kEnableHostedAppsInWindows[]; |
364 extern const char kEnableMacViewsNativeAppWindows[]; | 366 extern const char kEnableMacViewsNativeAppWindows[]; |
365 extern const char kEnableMacViewsDialogs[]; | 367 extern const char kEnableMacViewsDialogs[]; |
366 extern const char kEnableTranslateNewUX[]; | 368 extern const char kEnableTranslateNewUX[]; |
367 extern const char kMetricsClientID[]; | 369 extern const char kMetricsClientID[]; |
368 extern const char kRelauncherProcess[]; | 370 extern const char kRelauncherProcess[]; |
369 #endif // defined(OS_MACOSX) | 371 #endif // defined(OS_MACOSX) |
370 | 372 |
371 #if defined(OS_WIN) | 373 #if defined(OS_WIN) |
372 extern const char kEnableCloudPrintXps[]; | 374 extern const char kEnableCloudPrintXps[]; |
373 extern const char kEnableProfileShortcutManager[]; | 375 extern const char kEnableProfileShortcutManager[]; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 #if defined(ENABLE_TASK_MANAGER) | 423 #if defined(ENABLE_TASK_MANAGER) |
422 bool NewTaskManagerEnabled(); | 424 bool NewTaskManagerEnabled(); |
423 #endif // defined(ENABLE_TASK_MANAGER) | 425 #endif // defined(ENABLE_TASK_MANAGER) |
424 | 426 |
425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 427 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
426 // alphabetical order, or in one of the ifdefs (also in order in each section). | 428 // alphabetical order, or in one of the ifdefs (also in order in each section). |
427 | 429 |
428 } // namespace switches | 430 } // namespace switches |
429 | 431 |
430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 432 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |