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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 382 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
383 extern const char kPasswordStore[]; | 383 extern const char kPasswordStore[]; |
384 #endif | 384 #endif |
385 | 385 |
386 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 386 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
387 extern const char kEnableSpeechDispatcher[]; | 387 extern const char kEnableSpeechDispatcher[]; |
388 extern const char kMigrateDataDirForSxS[]; | 388 extern const char kMigrateDataDirForSxS[]; |
389 #endif | 389 #endif |
390 | 390 |
391 #if defined(OS_MACOSX) | 391 #if defined(OS_MACOSX) |
392 extern const char kAppsKeepChromeAlive[]; | 392 extern const char kAppsKeepChromeAliveInTests[]; |
393 extern const char kDisableSystemFullscreenForTesting[]; | 393 extern const char kDisableSystemFullscreenForTesting[]; |
394 extern const char kEnableSimplifiedFullscreen[]; | 394 extern const char kEnableSimplifiedFullscreen[]; |
395 extern const char kRelauncherProcess[]; | 395 extern const char kRelauncherProcess[]; |
396 #endif | 396 #endif |
397 | 397 |
398 #if defined(OS_WIN) | 398 #if defined(OS_WIN) |
399 extern const char kEnableCloudPrintXps[]; | 399 extern const char kEnableCloudPrintXps[]; |
400 extern const char kEnableProfileShortcutManager[]; | 400 extern const char kEnableProfileShortcutManager[]; |
401 extern const char kForceDesktop[]; | 401 extern const char kForceDesktop[]; |
402 extern const char kForceImmersive[]; | 402 extern const char kForceImmersive[]; |
(...skipping 13 matching lines...) Expand all Loading... |
416 #endif | 416 #endif |
417 | 417 |
418 bool SettingsWindowEnabled(); | 418 bool SettingsWindowEnabled(); |
419 | 419 |
420 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 420 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
421 // alphabetical order, or in one of the ifdefs (also in order in each section). | 421 // alphabetical order, or in one of the ifdefs (also in order in each section). |
422 | 422 |
423 } // namespace switches | 423 } // namespace switches |
424 | 424 |
425 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 425 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |