| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 #endif | 357 #endif |
| 358 | 358 |
| 359 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 359 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 360 extern const char kMigrateDataDirForSxS[]; | 360 extern const char kMigrateDataDirForSxS[]; |
| 361 #endif | 361 #endif |
| 362 | 362 |
| 363 #if defined(OS_MACOSX) | 363 #if defined(OS_MACOSX) |
| 364 extern const char kAppsKeepChromeAliveInTests[]; | 364 extern const char kAppsKeepChromeAliveInTests[]; |
| 365 extern const char kDisableSystemFullscreenForTesting[]; | 365 extern const char kDisableSystemFullscreenForTesting[]; |
| 366 extern const char kEnableFullSizeContentView[]; | 366 extern const char kEnableFullSizeContentView[]; |
| 367 extern const char kEnableSimplifiedFullscreen[]; | |
| 368 extern const char kRelauncherProcess[]; | 367 extern const char kRelauncherProcess[]; |
| 369 #endif | 368 #endif |
| 370 | 369 |
| 371 #if defined(OS_WIN) | 370 #if defined(OS_WIN) |
| 372 extern const char kEnableCloudPrintXps[]; | 371 extern const char kEnableCloudPrintXps[]; |
| 373 extern const char kEnableProfileShortcutManager[]; | 372 extern const char kEnableProfileShortcutManager[]; |
| 374 extern const char kForceDesktop[]; | 373 extern const char kForceDesktop[]; |
| 375 extern const char kForceImmersive[]; | 374 extern const char kForceImmersive[]; |
| 376 extern const char kRelaunchShortcut[]; | 375 extern const char kRelaunchShortcut[]; |
| 377 extern const char kViewerConnect[]; | 376 extern const char kViewerConnect[]; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 396 | 395 |
| 397 bool AboutInSettingsEnabled(); | 396 bool AboutInSettingsEnabled(); |
| 398 bool SettingsWindowEnabled(); | 397 bool SettingsWindowEnabled(); |
| 399 | 398 |
| 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 399 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 401 // alphabetical order, or in one of the ifdefs (also in order in each section). | 400 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 402 | 401 |
| 403 } // namespace switches | 402 } // namespace switches |
| 404 | 403 |
| 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 404 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |