| OLD | NEW |
| 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 > bindings/server.h | 4 > 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 Loading... |
| 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> |
| OLD | NEW |