| 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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 extern const char kEnableSimplifiedFullscreen[]; | 367 extern const char kEnableSimplifiedFullscreen[]; |
| 368 extern const char kRelauncherProcess[]; | 368 extern const char kRelauncherProcess[]; |
| 369 #endif | 369 #endif |
| 370 | 370 |
| 371 #if defined(OS_WIN) | 371 #if defined(OS_WIN) |
| 372 extern const char kEnableCloudPrintXps[]; | 372 extern const char kEnableCloudPrintXps[]; |
| 373 extern const char kEnableProfileShortcutManager[]; | 373 extern const char kEnableProfileShortcutManager[]; |
| 374 extern const char kForceDesktop[]; | 374 extern const char kForceDesktop[]; |
| 375 extern const char kForceImmersive[]; | 375 extern const char kForceImmersive[]; |
| 376 extern const char kRelaunchShortcut[]; | 376 extern const char kRelaunchShortcut[]; |
| 377 extern const char kViewerConnect[]; | |
| 378 extern const char kViewerLaunchViaAppId[]; | 377 extern const char kViewerLaunchViaAppId[]; |
| 379 extern const char kWaitForMutex[]; | 378 extern const char kWaitForMutex[]; |
| 380 extern const char kWindows8Search[]; | 379 extern const char kWindows8Search[]; |
| 381 #endif | 380 #endif |
| 382 | 381 |
| 383 #if defined(ENABLE_FULL_PRINTING) && !defined(OFFICIAL_BUILD) | 382 #if defined(ENABLE_FULL_PRINTING) && !defined(OFFICIAL_BUILD) |
| 384 extern const char kDebugPrint[]; | 383 extern const char kDebugPrint[]; |
| 385 #endif | 384 #endif |
| 386 | 385 |
| 387 #if defined(ENABLE_PLUGINS) | 386 #if defined(ENABLE_PLUGINS) |
| 388 extern const char kAllowNaClCrxFsAPI[]; | 387 extern const char kAllowNaClCrxFsAPI[]; |
| 389 extern const char kAllowNaClFileHandleAPI[]; | 388 extern const char kAllowNaClFileHandleAPI[]; |
| 390 extern const char kAllowNaClSocketAPI[]; | 389 extern const char kAllowNaClSocketAPI[]; |
| 391 #endif | 390 #endif |
| 392 | 391 |
| 393 #ifndef NDEBUG | 392 #ifndef NDEBUG |
| 394 extern const char kFileManagerExtensionPath[]; | 393 extern const char kFileManagerExtensionPath[]; |
| 395 #endif | 394 #endif |
| 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 |