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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2826803002: Add UMA for CopylessPaste cache (Closed)
Patch Set: Created 3 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 1a461ef44b8aa9abfe5ca8335138617cb19e5f98..a60d2ddc8654896b2868475fbe7ef4f602cf2f85 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -9193,6 +9193,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>For each cookie added to the store, record it's type(s).</summary>
</histogram>
+<histogram name="CopylessPaste.CacheHit" enum="CopylessCacheHit">
+ <owner>wychen@chromium.org</owner>
+ <summary>
+ The cache hit status of metadata extraction for AppIndexing.
+ </summary>
+</histogram>
+
<histogram name="CopylessPaste.ExtractionFailedUs" units="microseconds">
<owner>wychen@chromium.org</owner>
<summary>
@@ -87636,6 +87643,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="7" label="First-Party-Only, HttpOnly, Secure"/>
</enum>
+<enum name="CopylessCacheHit" type="int">
+ <int value="0" label="Cache hit with entity"/>
+ <int value="1" label="Cache hit without entity"/>
+ <int value="2" label="Cache miss"/>
+</enum>
+
<enum name="CorePageTransition" type="int">
<summary>
The core value of PageTransition. See ui/base/page_transition_types.h.

Powered by Google App Engine
This is Rietveld 408576698