switches.cc 733 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. #include "extensions/shell/common/switches.h"
  5. #include "build/chromeos_buildflags.h"
  6. namespace extensions {
  7. namespace switches {
  8. #if BUILDFLAG(IS_CHROMEOS_ASH)
  9. // Allow roaming in the cellular network.
  10. const char kAppShellAllowRoaming[] = "app-shell-allow-roaming";
  11. // Size for the host window to create (i.e. "800x600").
  12. const char kAppShellHostWindowSize[] = "app-shell-host-window-size";
  13. // SSID of the preferred WiFi network.
  14. const char kAppShellPreferredNetwork[] = "app-shell-preferred-network";
  15. #endif
  16. } // namespace switches
  17. } // namespace extensions