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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 kDisableAppInfoDialogMac[]; |
353 extern const char kDisableHostedAppShimCreation[]; | 353 extern const char kDisableHostedAppShimCreation[]; |
| 354 extern const char kDisableMacViewsNativeAppWindows[]; |
354 extern const char kDisableSystemFullscreenForTesting[]; | 355 extern const char kDisableSystemFullscreenForTesting[]; |
355 extern const char kEnableAppInfoDialogMac[]; | 356 extern const char kEnableAppInfoDialogMac[]; |
| 357 extern const char kEnableMacViewsNativeAppWindows[]; |
356 extern const char kEnableTranslateNewUX[]; | 358 extern const char kEnableTranslateNewUX[]; |
357 extern const char kMetricsClientID[]; | 359 extern const char kMetricsClientID[]; |
358 extern const char kRelauncherProcess[]; | 360 extern const char kRelauncherProcess[]; |
359 #endif // defined(OS_MACOSX) | 361 #endif // defined(OS_MACOSX) |
360 | 362 |
361 #if defined(OS_WIN) | 363 #if defined(OS_WIN) |
362 extern const char kEnableCloudPrintXps[]; | 364 extern const char kEnableCloudPrintXps[]; |
363 extern const char kEnableProfileShortcutManager[]; | 365 extern const char kEnableProfileShortcutManager[]; |
364 extern const char kForceDesktop[]; | 366 extern const char kForceDesktop[]; |
365 extern const char kForceImmersive[]; | 367 extern const char kForceImmersive[]; |
(...skipping 37 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 |