switches.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright 2013 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef EXTENSIONS_COMMON_SWITCHES_H_
  5. #define EXTENSIONS_COMMON_SWITCHES_H_
  6. #include "build/chromeos_buildflags.h"
  7. // All switches in alphabetical order. The switches should be documented
  8. // alongside the definition of their values in the .cc file.
  9. namespace extensions {
  10. namespace switches {
  11. extern const char kAllowHTTPBackgroundPage[];
  12. extern const char kAllowLegacyExtensionManifests[];
  13. extern const char kAllowlistedExtensionID[];
  14. extern const char kDEPRECATED_AllowlistedExtensionID[];
  15. extern const char kDisableAppContentVerification[];
  16. extern const char kDisableExtensionsHttpThrottling[];
  17. extern const char kEmbeddedExtensionOptions[];
  18. extern const char kEnableExperimentalExtensionApis[];
  19. extern const char kEnableBLEAdvertising[];
  20. extern const char kExtensionProcess[];
  21. extern const char kExtensionsOnChromeURLs[];
  22. extern const char kForceDevModeHighlighting[];
  23. extern const char kLoadApps[];
  24. extern const char kLoadExtension[];
  25. #if BUILDFLAG(IS_CHROMEOS_ASH)
  26. extern const char kLoadSigninProfileTestExtension[];
  27. extern const char kLoadGuestModeTestExtension[];
  28. #endif
  29. extern const char kSetExtensionThrottleTestParams[];
  30. extern const char kShowComponentExtensionOptions[];
  31. extern const char kTraceAppSource[];
  32. extern const char kEnableCrxHashCheck[];
  33. extern const char kAllowFutureManifestVersion[];
  34. } // namespace switches
  35. } // namespace extensions
  36. #endif // EXTENSIONS_COMMON_SWITCHES_H_