summaryrefslogtreecommitdiffstats
path: root/components/onc
diff options
context:
space:
mode:
authorthieule@chromium.org <thieule@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-12 01:00:34 +0000
committerthieule@chromium.org <thieule@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-12 01:02:50 +0000
commit8bb063bc2ea2412146f86567957776fcb866a63d (patch)
treeb618acfae74fceab9e1d9cb47e312495caa366d5 /components/onc
parent43ebf82a66be875f5ea4be4fcec5930bddaed8e2 (diff)
downloadchromium_src-8bb063bc2ea2412146f86567957776fcb866a63d.zip
chromium_src-8bb063bc2ea2412146f86567957776fcb866a63d.tar.gz
chromium_src-8bb063bc2ea2412146f86567957776fcb866a63d.tar.bz2
Enable Verizon OTA activation.
Enables OTA activation using the old Wifi flow except it connects to the cellular network instead of requiring a Wifi connection. BUG=chromium:384185 TEST=Unit tests, manually activate SIM on CDMA and LTE Review URL: https://codereview.chromium.org/406473002 Cr-Commit-Position: refs/heads/master@{#288854} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/onc')
-rw-r--r--components/onc/onc_constants.cc2
-rw-r--r--components/onc/onc_constants.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/components/onc/onc_constants.cc b/components/onc/onc_constants.cc
index f7e932b..1c1dccda 100644
--- a/components/onc/onc_constants.cc
+++ b/components/onc/onc_constants.cc
@@ -75,8 +75,8 @@ const char kWireless[] = "Wireless";
} // namespace network_type
namespace cellular {
-const char kActivateOverNonCellularNetwork[] = "ActivateOverNonCellularNetwork";
const char kActivationState[] = "ActivationState";
+const char kActivationType[] = "ActivationType";
const char kAllowRoaming[] = "AllowRoaming";
const char kAPN[] = "APN";
const char kAPNList[] = "APNList";
diff --git a/components/onc/onc_constants.h b/components/onc/onc_constants.h
index ca85a76..5db4c92 100644
--- a/components/onc/onc_constants.h
+++ b/components/onc/onc_constants.h
@@ -92,8 +92,8 @@ ONC_EXPORT extern const char kWireless[];
} // namespace network_type
namespace cellular {
-ONC_EXPORT extern const char kActivateOverNonCellularNetwork[];
ONC_EXPORT extern const char kActivationState[];
+ONC_EXPORT extern const char kActivationType[];
ONC_EXPORT extern const char kAllowRoaming[];
ONC_EXPORT extern const char kAPN[];
ONC_EXPORT extern const char kAPNList[];