switches.h 779 B

123456789101112131415161718192021222324
  1. // Copyright 2014 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_SHELL_COMMON_SWITCHES_H_
  5. #define EXTENSIONS_SHELL_COMMON_SWITCHES_H_
  6. #include "build/build_config.h"
  7. #include "build/chromeos_buildflags.h"
  8. namespace extensions {
  9. namespace switches {
  10. // All switches in alphabetical order. The switches should be documented
  11. // alongside the definition of their values in the .cc file.
  12. #if BUILDFLAG(IS_CHROMEOS_ASH)
  13. extern const char kAppShellAllowRoaming[];
  14. extern const char kAppShellHostWindowSize[];
  15. extern const char kAppShellPreferredNetwork[];
  16. #endif
  17. } // namespace switches
  18. } // namespace extensions
  19. #endif // EXTENSIONS_SHELL_COMMON_SWITCHES_H_