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.
5 #include "extensions/shell/common/switches.h"
10 // Allow roaming in the cellular network.
11 const char kAppShellAllowRoaming
[] = "app-shell-allow-roaming";
13 // Size for the host window to create (i.e. "800x600").
14 const char kAppShellHostWindowSize
[] = "app-shell-host-window-size";
16 // ID of an extension CRX to be downloaded from the web store.
17 const char kAppShellInstallCrx
[] = "app-shell-install-crx";
19 // SSID of the preferred WiFi network.
20 const char kAppShellPreferredNetwork
[] = "app-shell-preferred-network";
22 // Refresh token for identity API calls for the current user. Used for testing.
23 const char kAppShellRefreshToken
[] = "app-shell-refresh-token";
25 // User email address of the current user.
26 const char kAppShellUser
[] = "app-shell-user";
28 } // namespace switches
29 } // namespace extensions