Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: extensions/shell/common/switches.cc

Issue 727963004: app_shell: Change flag for loading apps to --load-app and only launch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review fixes Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« extensions/shell/README ('K') | « extensions/shell/common/switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« extensions/shell/README ('K') | « extensions/shell/common/switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698