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