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 // Path to an app to load at startup. | |
11 const char kAppShellAppPath[] = "app-shell-app-path"; | |
12 | |
13 // Bounds for the host window to create (i.e. "800x600"). | 10 // Bounds for the host window to create (i.e. "800x600"). |
14 const char kAppShellHostWindowBounds[] = "app-shell-host-window-bounds"; | 11 const char kAppShellHostWindowBounds[] = "app-shell-host-window-bounds"; |
15 | 12 |
16 // ID of an extension CRX to be downloaded from the web store. | 13 // ID of an extension CRX to be downloaded from the web store. |
17 const char kAppShellInstallCrx[] = "app-shell-install-crx"; | 14 const char kAppShellInstallCrx[] = "app-shell-install-crx"; |
18 | 15 |
19 // SSID of the preferred WiFi network. | 16 // SSID of the preferred WiFi network. |
20 const char kAppShellPreferredNetwork[] = "app-shell-preferred-network"; | 17 const char kAppShellPreferredNetwork[] = "app-shell-preferred-network"; |
21 | 18 |
22 // Refresh token for identity API calls for the current user. Used for testing. | 19 // Refresh token for identity API calls for the current user. Used for testing. |
23 const char kAppShellRefreshToken[] = "app-shell-refresh-token"; | 20 const char kAppShellRefreshToken[] = "app-shell-refresh-token"; |
24 | 21 |
25 // User email address of the current user. | 22 // User email address of the current user. |
26 const char kAppShellUser[] = "app-shell-user"; | 23 const char kAppShellUser[] = "app-shell-user"; |
27 | 24 |
28 } // namespace switches | 25 } // namespace switches |
29 } // namespace extensions | 26 } // namespace extensions |
OLD | NEW |