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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 extern const char kEnableCloudPrintXps[]; | 377 extern const char kEnableCloudPrintXps[]; |
378 extern const char kEnableProfileShortcutManager[]; | 378 extern const char kEnableProfileShortcutManager[]; |
379 extern const char kForceDesktop[]; | 379 extern const char kForceDesktop[]; |
380 extern const char kForceImmersive[]; | 380 extern const char kForceImmersive[]; |
381 extern const char kRelaunchShortcut[]; | 381 extern const char kRelaunchShortcut[]; |
382 extern const char kViewerLaunchViaAppId[]; | 382 extern const char kViewerLaunchViaAppId[]; |
383 extern const char kWaitForMutex[]; | 383 extern const char kWaitForMutex[]; |
384 extern const char kWindows8Search[]; | 384 extern const char kWindows8Search[]; |
385 #endif | 385 #endif |
386 | 386 |
387 #if defined(ENABLE_FULL_PRINTING) && !defined(OFFICIAL_BUILD) | 387 #if defined(ENABLE_PRINT_PREVIEW) && !defined(OFFICIAL_BUILD) |
388 extern const char kDebugPrint[]; | 388 extern const char kDebugPrint[]; |
389 #endif | 389 #endif |
390 | 390 |
391 #if defined(ENABLE_PLUGINS) | 391 #if defined(ENABLE_PLUGINS) |
392 extern const char kAllowNaClCrxFsAPI[]; | 392 extern const char kAllowNaClCrxFsAPI[]; |
393 extern const char kAllowNaClFileHandleAPI[]; | 393 extern const char kAllowNaClFileHandleAPI[]; |
394 extern const char kAllowNaClSocketAPI[]; | 394 extern const char kAllowNaClSocketAPI[]; |
395 #endif | 395 #endif |
396 | 396 |
397 #ifndef NDEBUG | 397 #ifndef NDEBUG |
398 extern const char kFileManagerExtensionPath[]; | 398 extern const char kFileManagerExtensionPath[]; |
399 #endif | 399 #endif |
400 | 400 |
401 bool AboutInSettingsEnabled(); | 401 bool AboutInSettingsEnabled(); |
402 bool SettingsWindowEnabled(); | 402 bool SettingsWindowEnabled(); |
403 | 403 |
404 #if defined(OS_CHROMEOS) | 404 #if defined(OS_CHROMEOS) |
405 bool PowerOverlayEnabled(); | 405 bool PowerOverlayEnabled(); |
406 #endif | 406 #endif |
407 | 407 |
408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
409 // alphabetical order, or in one of the ifdefs (also in order in each section). | 409 // alphabetical order, or in one of the ifdefs (also in order in each section). |
410 | 410 |
411 } // namespace switches | 411 } // namespace switches |
412 | 412 |
413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |