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

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

Issue 2388303007: [Offline Pages] Adds UMA for result of attempts to immediately start background loading. (Closed)
Patch Set: Two comment improvements Created 4 years, 2 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 | « components/offline_pages/background/request_coordinator.cc ('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 943d6a4f2ba263128b9e46be39c1290cc8bc88bc..61cfe6457d21c3c26255b49ec6c8948f14d82477 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -38406,6 +38406,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="OfflinePages.Background.ImmediateStartStatus"
+ enum="OfflinePagesBackgroundImmediateStartStatus">
+ <owner>dougarnett@chromium.org</owner>
+ <summary>
+ Status of attempt to immediately start offlining a page in the background
+ while application is still concurrently using the foreground. This may be
+ attempted when an web page download is initially requested or resumed.
+ </summary>
+</histogram>
+
<histogram name="OfflinePages.Background.OfflinerRequestStatus"
enum="OfflinePagesBackgroundOfflinerRequestStatus">
<owner>dougarnett@chromium.org</owner>
@@ -91557,6 +91567,16 @@ value.
<int value="11" label="Unknown net error, showing error page"/>
</enum>
+<enum name="OfflinePagesBackgroundImmediateStartStatus" type="int">
+ <int value="0" label="Started"/>
+ <int value="1" label="Busy"/>
+ <int value="2" label="Not accepted by loader"/>
+ <int value="3" label="No connection"/>
+ <int value="4"
+ label="Weak connection (according to network quality estimator)"/>
+ <int value="5" label="Not started on svelte device"/>
+</enum>
+
<enum name="OfflinePagesBackgroundOfflinerRequestStatus" type="int">
<!-- Generated from components/offline_pages/background/offliner.h -->
« no previous file with comments | « components/offline_pages/background/request_coordinator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698