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

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

Issue 1085973002: Add a flag to app_shell that allows roaming on cellular networks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months 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
« no previous file with comments | « 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 // 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
OLDNEW
« no previous file with comments | « extensions/shell/common/switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698