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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 14146032: Open source CrosDisks.* histograms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index d873d9d838a25c1ca42c89901f1b816ba7071cc6..9d72b4af5bd4ccc191234aabc87b7de63713ec76 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -381,6 +381,27 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="CrosDisks.ArchiveType" enum="CrosDisksArchiveType">
+ <summary>
+ The type of archive file that Chrome OS cros-disks daemon is requested to
+ mount.
+ </summary>
+</histogram>
+
+<histogram name="CrosDisks.DeviceMediaType" enum="CrosDisksDeviceMediaType">
+ <summary>
+ The media type of removable device that Chrome OS cros-disks daemon is
+ requested to mount.
+ </summary>
+</histogram>
+
+<histogram name="CrosDisks.FilesystemType" enum="CrosDisksFilesystemType">
+ <summary>
+ The type of file system that Chrome OS cros-disks daemon is requested to
+ mount.
+ </summary>
+</histogram>
+
<histogram name="DiskCache.TotalIOTime" units="milliseconds">
<obsolete>
Deprecated.
@@ -4522,6 +4543,38 @@ other types of suffix sets.
</int>
</enum>
+<enum name="CrosDisksArchiveType" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="ZIP"/>
+ <int value="2" label="RAR"/>
+ <int value="3" label="Tar"/>
+ <int value="4" label="Bzip2-compressed Tar"/>
+ <int value="5" label="Gzip-compressed Tar"/>
+</enum>
+
+<enum name="CrosDisksDeviceMediaType" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="USB Drive"/>
+ <int value="2" label="SD Card"/>
+ <int value="3" label="Optical Disc"/>
+ <int value="4" label="Mobile Device"/>
+ <int value="5" label="DVD"/>
+</enum>
+
+<enum name="CrosDisksFilesystemType" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="Others"/>
+ <int value="2" label="FAT"/>
+ <int value="3" label="exFAT"/>
+ <int value="4" label="NTFS"/>
+ <int value="5" label="HFS+"/>
+ <int value="6" label="Ext2"/>
+ <int value="7" label="Ext3"/>
+ <int value="8" label="Ext4"/>
+ <int value="9" label="ISO9660"/>
+ <int value="10" label="UDF"/>
+</enum>
+
<enum name="DoubleGetExperimentMethods" type="int">
<int value="0" label="POST"/>
<int value="1" label="GET_CACHABLE"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698