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

Side by Side Diff: introspection/cashew.xml

Issue 3576011: Cashew: track cellular service state. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cashew.git
Patch Set: Make debug logging less verbose 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 | « extrospection/flimflam-service.xml ('k') | src/Makefile.am » ('j') | 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 xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
4 <interface name="org.chromium.Cashew"> 4 <interface name="org.chromium.Cashew">
5 5
6 <tp:simple-type name="Timestamp" type="x"> 6 <tp:simple-type name="Timestamp" type="x">
7 <tp:docstring> 7 <tp:docstring>
8 A 64-bit integer representing time in seconds since the Epoch. 8 A 64-bit integer representing time in seconds since the Epoch.
9 </tp:docstring> 9 </tp:docstring>
10 </tp:simple-type> 10 </tp:simple-type>
11 11
12 <tp:simple-type name="Bytes" type="x"> 12 <tp:simple-type name="Bytes" type="x">
13 <tp:docstring> 13 <tp:docstring>
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 <arg name="service" type="s" direction="in"> 80 <arg name="service" type="s" direction="in">
81 <tp:docstring> 81 <tp:docstring>
82 The dbus path of the cellular service for which caller wants info. 82 The dbus path of the cellular service for which caller wants info.
83 </tp:docstring> 83 </tp:docstring>
84 </arg> 84 </arg>
85 <arg name="plans" type="aa{sv}" direction="out" tp:type="DataPlansList"> 85 <arg name="plans" type="aa{sv}" direction="out" tp:type="DataPlansList">
86 <tp:docstring> 86 <tp:docstring>
87 A list of plan structs describing the data plans for |service|. 87 A list of plan structs describing the data plans for |service|.
88 </tp:docstring> 88 </tp:docstring>
89 </arg> 89 </arg>
90 <tp:possible-errors>
91 <tp:error name="org.chromium.Cashew.Error.ServiceUnknown">
92 The service path does not correspond to a known service.
93 </tp:error>
94 </tp:possible-errors>
90 </method> 95 </method>
91 96
92 <method name="RequestDataPlansUpdate"> 97 <method name="RequestDataPlansUpdate">
93 <tp:docstring> 98 <tp:docstring>
94 Request that a DataPlansUpdate signal be sent for a cellular service. 99 Request that a DataPlansUpdate signal be sent for a cellular service.
95 </tp:docstring> 100 </tp:docstring>
96 <arg name="service" type="s" direction="in"> 101 <arg name="service" type="s" direction="in">
97 <tp:docstring> 102 <tp:docstring>
98 The dbus path of the cellular service for which caller wants info. 103 The dbus path of the cellular service for which caller wants info.
99 </tp:docstring> 104 </tp:docstring>
100 </arg> 105 </arg>
106 <tp:possible-errors>
107 <tp:error name="org.chromium.Cashew.Error.ServiceUnknown">
108 The service path does not correspond to a known service.
109 </tp:error>
110 </tp:possible-errors>
101 </method> 111 </method>
102 112
103 <method name="IsAlive"> 113 <method name="IsAlive">
104 <tp:docstring> 114 <tp:docstring>
105 Test method to verify that Cashew service is working. 115 Test method to verify that Cashew service is working.
106 </tp:docstring> 116 </tp:docstring>
107 <arg name="result" type="b" direction="out"> 117 <arg name="result" type="b" direction="out">
108 <tp:docstring> 118 <tp:docstring>
109 Boolean indicating whether Cashew service is alive. 119 Boolean indicating whether Cashew service is alive.
110 </tp:docstring> 120 </tp:docstring>
111 </arg> 121 </arg>
112 </method> 122 </method>
113 </interface> 123 </interface>
114 </node> 124 </node>
OLDNEW
« no previous file with comments | « extrospection/flimflam-service.xml ('k') | src/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698