Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(469)

Side by Side Diff: introspection/mm-modem-cdma.xml

Issue 3616004: Add enums for activation state (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/modemmanager.git
Patch Set: Remove UNKNOWN state Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="UTF-8" ?> 1 <?xml version="1.0" encoding="UTF-8" ?>
2 2
3 <node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensio ns-v0"> 3 <node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensio ns-v0">
4 <interface name="org.freedesktop.ModemManager.Modem.Cdma"> 4 <interface name="org.freedesktop.ModemManager.Modem.Cdma">
5 5
6 <method name="GetSignalQuality"> 6 <method name="GetSignalQuality">
7 <tp:docstring> 7 <tp:docstring>
8 Get the current signal quality. 8 Get the current signal quality.
9 </tp:docstring> 9 </tp:docstring>
10 <annotation name="org.freedesktop.DBus.GLib.Async" value=""/> 10 <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 <tp:docstring>Registered, but roaming status is unknown or cannot be pro vided by the device. The device may or may not be roaming.</tp:docstring> 115 <tp:docstring>Registered, but roaming status is unknown or cannot be pro vided by the device. The device may or may not be roaming.</tp:docstring>
116 </tp:enumvalue> 116 </tp:enumvalue>
117 <tp:enumvalue suffix="HOME" value="2"> 117 <tp:enumvalue suffix="HOME" value="2">
118 <tp:docstring>Currently registered on the home network.</tp:docstring> 118 <tp:docstring>Currently registered on the home network.</tp:docstring>
119 </tp:enumvalue> 119 </tp:enumvalue>
120 <tp:enumvalue suffix="ROAMING" value="3"> 120 <tp:enumvalue suffix="ROAMING" value="3">
121 <tp:docstring>Currently registered on a roaming network.</tp:docstring> 121 <tp:docstring>Currently registered on a roaming network.</tp:docstring>
122 </tp:enumvalue> 122 </tp:enumvalue>
123 </tp:enum> 123 </tp:enum>
124 124
125 <tp:enum name="MM_MODEM_CDMA_ACTIVATION_STATE" type="u">
126 <tp:enumvalue suffix="NOT_ACTIVATED" value="0">
127 <tp:docstring>Device is not activated</tp:docstring>
128 </tp:enumvalue>
129 <tp:enumvalue suffix="ACTIVATING" value="1">
130 <tp:docstring>Device is activating</tp:docstring>
131 </tp:enumvalue>
132 <tp:enumvalue suffix="PARTIALLY_ACTIVATED" value="2">
133 <tp:docstring>Device is partially activated; carrier-specific steps requ ired to continue.</tp:docstring>
134 </tp:enumvalue>
135 <tp:enumvalue suffix="ACTIVATED" value="3">
136 <tp:docstring>Device is ready for use.</tp:docstring>
137 </tp:enumvalue>
138 </tp:enum>
125 </interface> 139 </interface>
126 </node> 140 </node>
127 141
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698