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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 extern const char kPasswordStore[]; | 375 extern const char kPasswordStore[]; |
376 #endif | 376 #endif |
377 | 377 |
378 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 378 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
379 extern const char kEnableSpeechDispatcher[]; | 379 extern const char kEnableSpeechDispatcher[]; |
380 extern const char kMigrateDataDirForSxS[]; | 380 extern const char kMigrateDataDirForSxS[]; |
381 #endif | 381 #endif |
382 | 382 |
383 #if defined(OS_MACOSX) | 383 #if defined(OS_MACOSX) |
384 extern const char kAppsKeepChromeAlive[]; | 384 extern const char kAppsKeepChromeAlive[]; |
385 extern const char kDisableAppShims[]; | |
386 extern const char kDisableSystemFullscreenForTesting[]; | 385 extern const char kDisableSystemFullscreenForTesting[]; |
387 extern const char kEnableSimplifiedFullscreen[]; | 386 extern const char kEnableSimplifiedFullscreen[]; |
388 extern const char kRelauncherProcess[]; | 387 extern const char kRelauncherProcess[]; |
389 #endif | 388 #endif |
390 | 389 |
391 #if defined(OS_WIN) | 390 #if defined(OS_WIN) |
392 extern const char kEnableCloudPrintXps[]; | 391 extern const char kEnableCloudPrintXps[]; |
393 extern const char kEnableProfileShortcutManager[]; | 392 extern const char kEnableProfileShortcutManager[]; |
394 extern const char kForceDesktop[]; | 393 extern const char kForceDesktop[]; |
395 extern const char kForceImmersive[]; | 394 extern const char kForceImmersive[]; |
(...skipping 17 matching lines...) Expand all Loading... |
413 #else | 412 #else |
414 extern const char kEnablePrintPreview[]; | 413 extern const char kEnablePrintPreview[]; |
415 #endif | 414 #endif |
416 | 415 |
417 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
418 // alphabetical order, or in one of the ifdefs (also in order in each section). | 417 // alphabetical order, or in one of the ifdefs (also in order in each section). |
419 | 418 |
420 } // namespace switches | 419 } // namespace switches |
421 | 420 |
422 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |