summaryrefslogtreecommitdiffstats
path: root/components/onc/onc_constants.h
diff options
context:
space:
mode:
authorstevenjb <stevenjb@chromium.org>2015-02-25 13:05:53 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-25 21:06:34 +0000
commit00f2e618c1f54ba2403aec209ef3a5431e71bc7b (patch)
tree15453afae15be29dee2f1fc5d762071f74c70423 /components/onc/onc_constants.h
parent1692043f72ebf8834acb8d115ba5d727610420e3 (diff)
downloadchromium_src-00f2e618c1f54ba2403aec209ef3a5431e71bc7b.zip
chromium_src-00f2e618c1f54ba2403aec209ef3a5431e71bc7b.tar.gz
chromium_src-00f2e618c1f54ba2403aec209ef3a5431e71bc7b.tar.bz2
Better support for Cellular roaming state in ONC
This CL does the following: * Eliminates "ProviderRequiresRoaming" from ONC * Adds a "required" state to "RoamingState" in ONC when ProviderRequiresRoaming is true * Adds "ONC State" to chrome://network for testing networkingPrivate.getState() * Adds support for shill_stub=roaming=[home|roaming|required] to facilitate testing on Linux BUG=461163 Review URL: https://codereview.chromium.org/948943003 Cr-Commit-Position: refs/heads/master@{#318113}
Diffstat (limited to 'components/onc/onc_constants.h')
-rw-r--r--components/onc/onc_constants.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/onc/onc_constants.h b/components/onc/onc_constants.h
index 7d8f07e..6329ff8 100644
--- a/components/onc/onc_constants.h
+++ b/components/onc/onc_constants.h
@@ -132,10 +132,10 @@ ONC_EXPORT extern const char kMIN[];
ONC_EXPORT extern const char kModelID[];
ONC_EXPORT extern const char kNetworkTechnology[];
ONC_EXPORT extern const char kPRLVersion[];
-ONC_EXPORT extern const char kProviderRequiresRoaming[];
+ONC_EXPORT extern const char kRoamingHome[];
+ONC_EXPORT extern const char kRoamingRequired[];
+ONC_EXPORT extern const char kRoamingRoaming[];
ONC_EXPORT extern const char kRoamingState[];
-ONC_EXPORT extern const char kHome[];
-ONC_EXPORT extern const char kRoaming[];
ONC_EXPORT extern const char kServingOperator[];
ONC_EXPORT extern const char kSignalStrength[];
ONC_EXPORT extern const char kSIMLockStatus[];