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

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

Issue 3413011: modemmanager: Add a reason to ConnectionStateChanged events. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/modemmanager.git
Patch Set: Fixes per jglasgow. Created 10 years, 3 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 4
5 <interface name="org.freedesktop.DBus.Properties"> 5 <interface name="org.freedesktop.DBus.Properties">
6 <signal name="MmPropertiesChanged"> 6 <signal name="MmPropertiesChanged">
7 <tp:docstring> 7 <tp:docstring>
8 One or more properties' values changed. 8 One or more properties' values changed.
9 </tp:docstring> 9 </tp:docstring>
10 <arg name="interface" type="s"> 10 <arg name="interface" type="s">
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 94
95 <signal name="ConnectionStateChanged"> 95 <signal name="ConnectionStateChanged">
96 <tp:docstring> 96 <tp:docstring>
97 Send a notification that the modem connection state has changed. 97 Send a notification that the modem connection state has changed.
98 </tp:docstring> 98 </tp:docstring>
99 <arg name="state" type="b"> 99 <arg name="state" type="b">
100 <tp:docstring> 100 <tp:docstring>
101 True if the modem is connected; false otherwise. 101 True if the modem is connected; false otherwise.
102 </tp:docstring> 102 </tp:docstring>
103 </arg> 103 </arg>
104 <arg name="reason" type="u" tp:type="MM_MODEM_CONNECTION_STATE_CHANGED_REA SON">
105 <tp:docstring>
106 Reason for this state change.
107 </tp:docstring>
108 </arg>
104 </signal> 109 </signal>
105 110
106 <property name="Device" type="s" access="read"> 111 <property name="Device" type="s" access="read">
107 <tp:docstring> 112 <tp:docstring>
108 The modem port to use for IP configuration and traffic. 113 The modem port to use for IP configuration and traffic.
109 </tp:docstring> 114 </tp:docstring>
110 </property> 115 </property>
111 116
112 <property name="MasterDevice" type="s" access="read"> 117 <property name="MasterDevice" type="s" access="read">
113 <tp:docstring> 118 <tp:docstring>
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 Static configuration, the modem will provide IP information. 196 Static configuration, the modem will provide IP information.
192 </tp:docstring> 197 </tp:docstring>
193 </tp:enumvalue> 198 </tp:enumvalue>
194 <tp:enumvalue suffix="DHCP" value="2"> 199 <tp:enumvalue suffix="DHCP" value="2">
195 <tp:docstring> 200 <tp:docstring>
196 Use DHCP 201 Use DHCP
197 </tp:docstring> 202 </tp:docstring>
198 </tp:enumvalue> 203 </tp:enumvalue>
199 </tp:enum> 204 </tp:enum>
200 205
206 <tp:enum name="MM_MODEM_CONNECTION_STATE_CHANGE_REASON" type="u">
207 <tp:enumvalue suffix="UNKNOWN" value="0">
208 <tp:docstring>
209 Reason unknown or not reportable.
210 </tp:docstring>
211 </tp:enumvalue>
212 <tp:enumvalue suffix="REQUESTED" value="1">
213 <tp:docstring>
214 Connection state change was requested by an interface user.
215 </tp:docstring>
216 </tp:enumvalue>
217 <tp:enumvalue suffix="SUSPEND" value="2">
218 <tp:docstring>
219 Connection state change was caused by a system suspend.
220 </tp:docstring>
221 </tp:enumvalue>
222 </tp:enum>
223
224
201 </interface> 225 </interface>
202 </node> 226 </node>
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