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