summaryrefslogtreecommitdiffstats
path: root/components/onc
diff options
context:
space:
mode:
authorstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-22 06:21:40 +0000
committerstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-22 06:21:40 +0000
commitedf1e492aaea5cd30ac5e407dc7149c848e89ee5 (patch)
treec10d57898a082f9175b4ffeaec64ebb576dcee49 /components/onc
parent1d65acd5b5839c49e2bf451387c8143984379006 (diff)
downloadchromium_src-edf1e492aaea5cd30ac5e407dc7149c848e89ee5.zip
chromium_src-edf1e492aaea5cd30ac5e407dc7149c848e89ee5.tar.gz
chromium_src-edf1e492aaea5cd30ac5e407dc7149c848e89ee5.tar.bz2
Add Device properties for Cellular to MNCH for networkingPrivate
BUG=374003 Review URL: https://codereview.chromium.org/291553002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272119 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/onc')
-rw-r--r--components/onc/onc_constants.cc3
-rw-r--r--components/onc/onc_constants.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/components/onc/onc_constants.cc b/components/onc/onc_constants.cc
index c7eb1f1..5ca272b 100644
--- a/components/onc/onc_constants.cc
+++ b/components/onc/onc_constants.cc
@@ -34,6 +34,7 @@ const char kUnencryptedConfiguration[] = "UnencryptedConfiguration";
// Network Configuration
namespace network_config {
const char kCellular[] = "Cellular";
+const char kDevice[] = "Device";
const char kEthernet[] = "Ethernet";
const char kGUID[] = "GUID";
const char kIPConfigs[] = "IPConfigs";
@@ -100,7 +101,9 @@ const char kProviderRequiresRoaming[] = "ProviderRequiresRoaming";
const char kRoamingState[] = "RoamingState";
const char kSelectedNetwork[] = "SelectedNetwork";
const char kServingOperator[] = "ServingOperator";
+const char kSIMLockEnabled[] = "SIMLockEnabled";
const char kSIMLockStatus[] = "SIMLockStatus";
+const char kSIMLockType[] = "SIMLockType";
const char kSIMPresent[] = "SIMPresent";
const char kSupportedCarriers[] = "SupportedCarriers";
const char kSupportNetworkScan[] = "SupportNetworkScan";
diff --git a/components/onc/onc_constants.h b/components/onc/onc_constants.h
index d6ddc1f..df815c6 100644
--- a/components/onc/onc_constants.h
+++ b/components/onc/onc_constants.h
@@ -58,6 +58,7 @@ ONC_EXPORT extern const char kUnencryptedConfiguration[];
// NetworkConfiguration.
namespace network_config {
ONC_EXPORT extern const char kCellular[];
+ONC_EXPORT extern const char kDevice[];
ONC_EXPORT extern const char kEthernet[];
ONC_EXPORT extern const char kGUID[];
ONC_EXPORT extern const char kIPConfigs[];
@@ -117,7 +118,9 @@ ONC_EXPORT extern const char kProviderRequiresRoaming[];
ONC_EXPORT extern const char kRoamingState[];
ONC_EXPORT extern const char kSelectedNetwork[];
ONC_EXPORT extern const char kServingOperator[];
+ONC_EXPORT extern const char kSIMLockEnabled[];
ONC_EXPORT extern const char kSIMLockStatus[];
+ONC_EXPORT extern const char kSIMLockType[];
ONC_EXPORT extern const char kSIMPresent[];
ONC_EXPORT extern const char kSupportedCarriers[];
ONC_EXPORT extern const char kSupportNetworkScan[];