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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 361 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
362 extern const char kMigrateDataDirForSxS[]; | 362 extern const char kMigrateDataDirForSxS[]; |
363 #endif | 363 #endif |
364 | 364 |
365 #if defined(OS_MACOSX) | 365 #if defined(OS_MACOSX) |
366 extern const char kAppsKeepChromeAliveInTests[]; | 366 extern const char kAppsKeepChromeAliveInTests[]; |
367 extern const char kHostedAppQuitNotification[]; | 367 extern const char kHostedAppQuitNotification[]; |
368 extern const char kDisableHostedAppShimCreation[]; | 368 extern const char kDisableHostedAppShimCreation[]; |
369 extern const char kDisableSystemFullscreenForTesting[]; | 369 extern const char kDisableSystemFullscreenForTesting[]; |
370 extern const char kRelauncherProcess[]; | 370 extern const char kRelauncherProcess[]; |
| 371 extern const char kMetricsClientID[]; |
371 #endif | 372 #endif |
372 | 373 |
373 #if defined(OS_WIN) | 374 #if defined(OS_WIN) |
374 extern const char kEnableCloudPrintXps[]; | 375 extern const char kEnableCloudPrintXps[]; |
375 extern const char kEnableProfileShortcutManager[]; | 376 extern const char kEnableProfileShortcutManager[]; |
376 extern const char kForceDesktop[]; | 377 extern const char kForceDesktop[]; |
377 extern const char kForceImmersive[]; | 378 extern const char kForceImmersive[]; |
378 extern const char kRelaunchShortcut[]; | 379 extern const char kRelaunchShortcut[]; |
379 extern const char kViewerLaunchViaAppId[]; | 380 extern const char kViewerLaunchViaAppId[]; |
380 extern const char kWaitForMutex[]; | 381 extern const char kWaitForMutex[]; |
(...skipping 25 matching lines...) Expand all Loading... |
406 #if defined(OS_CHROMEOS) | 407 #if defined(OS_CHROMEOS) |
407 bool PowerOverlayEnabled(); | 408 bool PowerOverlayEnabled(); |
408 #endif | 409 #endif |
409 | 410 |
410 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
411 // alphabetical order, or in one of the ifdefs (also in order in each section). | 412 // alphabetical order, or in one of the ifdefs (also in order in each section). |
412 | 413 |
413 } // namespace switches | 414 } // namespace switches |
414 | 415 |
415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |