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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 900963003: Add DomDistiller.PageDistilledType and update DD.PageDistillableType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « tools/metrics/actions/actions.xml ('k') | 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 f3247f4d6a82100fa8e6e29b15e8dcfe5a81d8f4..50fc8b0f4d13841c1c105f60b3a97e0c547cd23e 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5445,11 +5445,19 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
-<histogram name="DomDistiller.PageDistillable" enum="BooleanDistillable">
- <owner>yfriedman@chromium.org</owner>
+<histogram name="DomDistiller.PageDistillable" enum="DistillableType">
+ <owner>cjhopman@chromium.org</owner>
+ <summary>
+ Records the &quot;Distillable Type&quot; (not distillable, mobile-friendly
+ distillable, non-mobile-friendly distillable, etc) for each analyzed page.
+ </summary>
+</histogram>
+
+<histogram name="DomDistiller.PageDistilledType" enum="DistillableType">
+ <owner>cjhopman@chromium.org</owner>
<summary>
- Records the number of times a page was loaded for which using DomDistiller
- is possible.
+ Records the &quot;Distillable Type&quot; (not distillable, mobile-friendly
+ distillable, non-mobile-friendly distillable, etc) for each distilled page.
</summary>
</histogram>
@@ -43516,11 +43524,6 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="Did fall back"/>
</enum>
-<enum name="BooleanDistillable" type="int">
- <int value="0" label="Not distillable"/>
- <int value="1" label="Distillable"/>
-</enum>
-
<enum name="BooleanDuplicate" type="int">
<int value="0" label="Not Duplicate"/>
<int value="1" label="Duplicate"/>
@@ -44850,6 +44853,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="3" label="Primary accounts present but different"/>
</enum>
+<enum name="DistillableType" type="int">
+ <int value="0" label="Not distillable"/>
+ <int value="1" label="Non-mobile-friendly Distillable"/>
+ <int value="2" label="Mobile-friendly distillable"/>
+</enum>
+
<enum name="DllHash" type="int">
<!-- Generated by chrome_elf/dll_hash/dll_hash_main.cc -->
« no previous file with comments | « tools/metrics/actions/actions.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698