diff options
author | jsimmons <jsimmons@chromium.org> | 2015-04-16 15:15:35 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-16 22:15:47 +0000 |
commit | 97ecc6e577ce2019720e72564e6a3a0efad25f3f (patch) | |
tree | 02665c7616a36e015b48b365f9685e5748b582f1 /extensions/shell/common | |
parent | b7b72aabc66d2f5d4f77df5d88797304d23dc84d (diff) | |
download | chromium_src-97ecc6e577ce2019720e72564e6a3a0efad25f3f.zip chromium_src-97ecc6e577ce2019720e72564e6a3a0efad25f3f.tar.gz chromium_src-97ecc6e577ce2019720e72564e6a3a0efad25f3f.tar.bz2 |
Add a flag to app_shell that allows roaming on cellular networks
BUG=chrome-os-partner:37102
Review URL: https://codereview.chromium.org/1085973002
Cr-Commit-Position: refs/heads/master@{#325525}
Diffstat (limited to 'extensions/shell/common')
-rw-r--r-- | extensions/shell/common/switches.cc | 3 | ||||
-rw-r--r-- | extensions/shell/common/switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/extensions/shell/common/switches.cc b/extensions/shell/common/switches.cc index 446b424..fbb5783 100644 --- a/extensions/shell/common/switches.cc +++ b/extensions/shell/common/switches.cc @@ -7,6 +7,9 @@ namespace extensions { namespace switches { +// Allow roaming in the cellular network. +const char kAppShellAllowRoaming[] = "app-shell-allow-roaming"; + // Size for the host window to create (i.e. "800x600"). const char kAppShellHostWindowSize[] = "app-shell-host-window-size"; diff --git a/extensions/shell/common/switches.h b/extensions/shell/common/switches.h index 7fe3d59..b6b3932 100644 --- a/extensions/shell/common/switches.h +++ b/extensions/shell/common/switches.h @@ -10,6 +10,7 @@ namespace switches { // All switches in alphabetical order. The switches should be documented // alongside the definition of their values in the .cc file. +extern const char kAppShellAllowRoaming[]; extern const char kAppShellHostWindowSize[]; extern const char kAppShellInstallCrx[]; extern const char kAppShellPreferredNetwork[]; |