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

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

Issue 1612803002: Test distillability on all pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mobile-distillable
Patch Set: address jwd's comment Created 4 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 | « third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp ('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 1c55a93923c93de769e0b2bb5304b37b306c1403..eb147643d79f43fdf447628792893b481d73d19a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -8496,6 +8496,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="DomDistiller.PageDistillable" enum="DistillableType">
+ <obsolete>
+ PageDistillableAfterLoading and PageDistillableAfterParsing provide more
+ details since 02/2016.
+ </obsolete>
<owner>cjhopman@chromium.org</owner>
<summary>
Records the &quot;Distillable Type&quot; (not distillable, mobile-friendly
@@ -8503,7 +8507,30 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="DomDistiller.PageDistillableAfterLoading"
+ enum="DistillableType2">
+ <owner>wychen@chromium.org</owner>
+ <summary>
+ Records the &quot;Distillable Type&quot; (mobile-friendly not distillable,
+ mobile-friendly distillable, non-mobile-friendly not distillable,
+ non-mobile-friendly distillable) for each analyzed page after loading.
+ </summary>
+</histogram>
+
+<histogram name="DomDistiller.PageDistillableAfterParsing"
+ enum="DistillableType2">
+ <owner>wychen@chromium.org</owner>
+ <summary>
+ Records the &quot;Distillable Type&quot; (mobile-friendly not distillable,
+ mobile-friendly distillable, non-mobile-friendly not distillable,
+ non-mobile-friendly distillable) for each analyzed page after parsing.
+ </summary>
+</histogram>
+
<histogram name="DomDistiller.PageDistilledType" enum="DistillableType">
+ <obsolete>
+ Not collected anymore.
+ </obsolete>
<owner>cjhopman@chromium.org</owner>
<summary>
Records the &quot;Distillable Type&quot; (not distillable, mobile-friendly
@@ -59766,10 +59793,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<enum name="DistillableType" type="int">
<int value="0" label="Not distillable"/>
- <int value="1" label="Non-mobile-friendly Distillable"/>
+ <int value="1" label="Non-mobile-friendly distillable"/>
<int value="2" label="Mobile-friendly distillable"/>
</enum>
+<enum name="DistillableType2" type="int">
+ <int value="0" label="Non-mobile-friendly, not distillable"/>
+ <int value="1" label="Mobile-friendly, not distillable"/>
+ <int value="2" label="Non-mobile-friendly, distillable"/>
+ <int value="3" 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 | « third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698