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

Side by Side Diff: update_engine.xml

Issue 4181001: AU: Implement getting of tracks through GetTrack. (Closed) Base URL: http://git.chromium.org/git/update_engine.git
Patch Set: sort by names Created 10 years, 1 month 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 | « omaha_request_params.cc ('k') | update_engine_client.cc » ('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 <!-- COPYRIGHT HERE 2 <!-- COPYRIGHT HERE
3 dbus-binding-tool -mode=glib-server -prefix=update_engine update_engine.xml 3 dbus-binding-tool -mode=glib-server -prefix=update_engine update_engine.xml
4 &gt; glib_server.h 4 &gt; glib_server.h
5 --> 5 -->
6 <node name="/org/chromium"> 6 <node name="/org/chromium">
7 <interface name="org.chromium.UpdateEngineInterface"> 7 <interface name="org.chromium.UpdateEngineInterface">
8 <annotation name="org.freedesktop.DBus.GLib.CSymbol" 8 <annotation name="org.freedesktop.DBus.GLib.CSymbol"
9 value="update_engine_service"/> 9 value="update_engine_service"/>
10 <method name="AttemptUpdate"> 10 <method name="AttemptUpdate">
11 <arg type="s" name="app_version" /> 11 <arg type="s" name="app_version" />
12 <arg type="s" name="omaha_url" /> 12 <arg type="s" name="omaha_url" />
13 </method> 13 </method>
14 <method name="GetStatus"> 14 <method name="GetStatus">
15 <arg type="x" name="last_checked_time" direction="out" /> 15 <arg type="x" name="last_checked_time" direction="out" />
16 <arg type="d" name="progress" direction="out" /> 16 <arg type="d" name="progress" direction="out" />
17 <arg type="s" name="current_operation" direction="out" /> 17 <arg type="s" name="current_operation" direction="out" />
18 <arg type="s" name="new_version" direction="out" /> 18 <arg type="s" name="new_version" direction="out" />
19 <arg type="x" name="new_size" direction="out" /> 19 <arg type="x" name="new_size" direction="out" />
20 </method> 20 </method>
21 <method name="GetTrack">
22 <arg type="s" name="track" direction="out" />
23 </method>
21 <method name="RebootIfNeeded"> 24 <method name="RebootIfNeeded">
22 </method> 25 </method>
23 <method name="SetTrack"> 26 <method name="SetTrack">
24 <arg type="s" name="track" /> 27 <arg type="s" name="track" />
25 </method> 28 </method>
26 <signal name="StatusUpdate"> 29 <signal name="StatusUpdate">
27 <arg type="x" name="last_checked_time" /> 30 <arg type="x" name="last_checked_time" />
28 <arg type="d" name="progress" /> 31 <arg type="d" name="progress" />
29 <arg type="s" name="current_operation" /> 32 <arg type="s" name="current_operation" />
30 <arg type="s" name="new_version" /> 33 <arg type="s" name="new_version" />
31 <arg type="x" name="new_size" /> 34 <arg type="x" name="new_size" />
32 </signal> 35 </signal>
33 </interface> 36 </interface>
34 </node> 37 </node>
OLDNEW
« no previous file with comments | « omaha_request_params.cc ('k') | update_engine_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698