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

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

Issue 2852193002: PDF: Add UMA to track successful / failed PDF loads (Closed)
Patch Set: fix up 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 45067c84ce74a7a239984b50c5735b4f3f1ead78..f81dadd7763d79f824fe541c3eef99a3897ad3c7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -49806,6 +49806,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="PDF.LoadStatus" enum="PDFLoadStatus">
+ <owner>tommycli@chromium.org</owner>
+ <summary>
+ Tracks what happens when Chrome tries to load a PDF. This metric tracks all
+ cases, but is focused on measuring failed PDF embeds, which occur if the
+ user is on Android, or if PDF plugin is disabled.
+ </summary>
+</histogram>
+
<histogram name="Pepper.Graphics3DHasShareGroup" units="BooleanShareGroup">
<owner>jbauman@chromium.org</owner>
<summary>
@@ -109681,6 +109690,12 @@ from previous Chrome versions.
<int value="2" label="Has Bookmarks"/>
</enum>
+<enum name="PDFLoadStatus" type="int">
+ <int value="0" label="Loaded a full-page PDF with PDFium"/>
+ <int value="1" label="Loaded an embedded PDF with PDFium"/>
+ <int value="2" label="Showed disabled plugin placeholder for embedded PDF"/>
+</enum>
+
<enum name="PeerConnectionCounters" type="int">
<int value="0" label="PeerConnection enabled with IPv4."/>
<int value="1" label="PeerConnection enabled with Ipv6."/>
« chrome/renderer/chrome_content_renderer_client.cc ('K') | « chrome/renderer/plugins/plugin_uma.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698