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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2682223006: Add a use counter and histogram to FileReaderSync. (Closed)
Patch Set: add new histogram to histograms.xml Created 3 years, 10 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index b5ebd73ce213ba382d8b986e8f03a1373fbc4020..1953993e547c9122300b8312ec3cec2b562ead17 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -19424,6 +19424,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="FileReaderSync.WorkerType" enum="FileReaderSyncWorkerType">
+ <owner>mek@chromium.org</owner>
+ <summary>
+ How often which worker types create FileReaderSync instances.
+ </summary>
+</histogram>
+
<histogram name="FileSystem.DirectoryDatabaseInit"
enum="FileSystemDatabaseInitResult">
<owner>tzik@chromium.org</owner>
@@ -90994,6 +91001,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
label="HTMLIFrameElementAllowfullscreenAttributeSetAfterContentLoad"/>
<int value="1806" label="PointerEventSetCaptureOutsideDispatch"/>
<int value="1807" label="NotificationPermissionRequestedInsecureOrigin"/>
+ <int value="1808" label="V8FileReaderSync_Constructor"/>
</enum>
<enum name="FetchRequestMode" type="int">
@@ -91833,6 +91841,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="6" label="File could not be exclusively opened."/>
</enum>
+<enum name="FileReaderSyncWorkerType" type="int">
+ <int value="0" label="Dedicated Worker"/>
+ <int value="1" label="Shared Worker"/>
+ <int value="2" label="Service Worker"/>
+ <int value="3" label="Other"/>
+</enum>
+
<enum name="FileSystemDatabaseInitResult" type="int">
<int value="0" label="OK"/>
<int value="1" label="Corruption"/>

Powered by Google App Engine
This is Rietveld 408576698