diff options
author | David Rochberg <rochberg@chromium.org> | 2010-10-04 09:35:25 -0400 |
---|---|---|
committer | Elly Jones <ellyjones@google.com> | 2010-12-20 14:47:52 -0500 |
commit | b19b25f324eff63e63638c26210d3108308bbaf9 (patch) | |
tree | 6a1142e31b1d568be835c293f83553c5b18fb175 | |
parent | 60725028affaa7405d022de8fe0dee7ad16f1a44 (diff) |
Add enums for activation state
BUG=6885
TEST=inspect mm-modem.h, build cromo et al against new mm-modem.h
Change-Id: Id8c849b6cffbadb9d5d2aa4109257eb747cf9bb5
Review URL: http://codereview.chromium.org/3616004
(cherry picked from commit 3a50b8c28d155060ce035a1c6d5eadf3d91297a5)
-rw-r--r-- | introspection/org.freedesktop.ModemManager.Modem.Cdma.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/introspection/org.freedesktop.ModemManager.Modem.Cdma.xml b/introspection/org.freedesktop.ModemManager.Modem.Cdma.xml index a2ebc1d2..5f2db855 100644 --- a/introspection/org.freedesktop.ModemManager.Modem.Cdma.xml +++ b/introspection/org.freedesktop.ModemManager.Modem.Cdma.xml @@ -98,6 +98,20 @@ </tp:enumvalue> </tp:enum> + <tp:enum name="MM_MODEM_CDMA_ACTIVATION_STATE" type="u"> + <tp:enumvalue suffix="NOT_ACTIVATED" value="0"> + <tp:docstring>Device is not activated</tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="ACTIVATING" value="1"> + <tp:docstring>Device is activating</tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="PARTIALLY_ACTIVATED" value="2"> + <tp:docstring>Device is partially activated; carrier-specific steps required to continue.</tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="ACTIVATED" value="3"> + <tp:docstring>Device is ready for use.</tp:docstring> + </tp:enumvalue> + </tp:enum> </interface> </node> |