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

Side by Side Diff: cryptohome.xml

Issue 2645008: Update on feedback, update dbus API, add unit tests. TEST=manual,unit,BVT BUG=3628 323 (Closed) Base URL: ssh://git@chromiumos-git/cryptohome.git
Patch Set: Address second round of feedback. Created 10 years, 6 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
« no previous file with comments | « cryptohome.cc ('k') | cryptohome_common.h » ('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=cryptohome cryptohome.xml 3 dbus-binding-tool -mode=glib-server -prefix=cryptohome cryptohome.xml
4 &gt; bindings/server.h 4 &gt; bindings/server.h
5 --> 5 -->
6 <node name="/org/chromium/"> 6 <node name="/org/chromium/">
7 <interface name="org.chromium.CryptohomeInterface"> 7 <interface name="org.chromium.CryptohomeInterface">
8 <annotation name="org.freedesktop.DBus.GLib.CSymbol" 8 <annotation name="org.freedesktop.DBus.GLib.CSymbol"
9 value="cryptohome"/> 9 value="cryptohome"/>
10 <method name="IsMounted"> 10 <method name="IsMounted">
(...skipping 14 matching lines...) Expand all
25 <arg type="s" name="username" direction="in" /> 25 <arg type="s" name="username" direction="in" />
26 <arg type="b" name="success" direction="out" /> 26 <arg type="b" name="success" direction="out" />
27 </method> 27 </method>
28 <method name="GetSystemSalt"> 28 <method name="GetSystemSalt">
29 <arg type="ay" name="salt" direction="out" /> 29 <arg type="ay" name="salt" direction="out" />
30 </method> 30 </method>
31 <method name="Mount"> 31 <method name="Mount">
32 <!-- long term, this should just be the hash --> 32 <!-- long term, this should just be the hash -->
33 <arg type="s" name="username" direction="in" /> 33 <arg type="s" name="username" direction="in" />
34 <arg type="s" name="key" direction="in" /> 34 <arg type="s" name="key" direction="in" />
35 <arg type="i" name="error" direction="out" />
36 <arg type="b" name="done" direction="out" />
37 </method>
38 <method name="MountGuest">
39 <arg type="i" name="error" direction="out" />
35 <arg type="b" name="done" direction="out" /> 40 <arg type="b" name="done" direction="out" />
36 </method> 41 </method>
37 <method name="Unmount"> 42 <method name="Unmount">
38 <arg type="b" name="done" direction="out" /> 43 <arg type="b" name="done" direction="out" />
39 </method> 44 </method>
40 </interface> 45 </interface>
41 </node> 46 </node>
OLDNEW
« no previous file with comments | « cryptohome.cc ('k') | cryptohome_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698