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

Side by Side Diff: cros-disks.xml

Issue 6824032: First batch of cros-disk changes (Closed) Base URL: ssh://gitrw.chromium.org:9222/cros-disks.git@master
Patch Set: adds set_ and removes j's Created 9 years, 8 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 | « cros-disks.conf ('k') | cros-disks-server-impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <node xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
4 <interface name="org.chromium.CrosDisks">
5 <tp:struct name="DiskDevice" array-name="DiskDevices">
6 <tp:member name="deviceIsDrive" type="b"> </tp:member>
7 <tp:member name="devicePresentationHide" type="b"> </tp:member>
8 <tp:member name="deviceIsMounted" type="b"> </tp:member>
9 <tp:member name="deviceMountPath" type="s"> </tp:member>
10 <tp:member name="label" type="s"> </tp:member>
11 <tp:member name="driveModel" type="s"> </tp:member>
12 <tp:member name="isRotational" type="b"> </tp:member>
13 <tp:member name="isOptical" type="b"> </tp:member>
14 <tp:member name="isReadOnly" type="b"> </tp:member>
15 <tp:member name="capacity" type="d"> </tp:member>
16 <tp:member name="bytes_remaining" type="d"> </tp:member>
17 </tp:struct>
18 <method name="FilesystemMount">
19 <arg name="nullArgument" type="s" direction="in">
20 </arg>
21 <arg name="mountOptions" type="as" direction="in">
22 </arg>
23 </method>
24 <method name="FilesystemUnmount">
25 <arg name="mountOptions" type="as" direction="in">
26 </arg>
27 </method>
28 <method name="GetAll">
29 <arg name="disks" type="aa{sv}" direction="out" tp:type="DiskDevices">
30 </arg>
31 </method>
32 <method name="IsAlive">
33 <tp:docstring>
34 Test method to verify that Cashew service is working.
35 </tp:docstring>
36 <arg name="result" type="b" direction="out">
37 <tp:docstring>
38 Boolean indicating whether Cashew service is alive.
39 </tp:docstring>
40 </arg>
41 </method>
42 </interface>
43 </node>
OLDNEW
« no previous file with comments | « cros-disks.conf ('k') | cros-disks-server-impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698