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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1420003004: Wipe out offline page data on clearing cookie and site data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address more feedback Created 5 years, 1 month 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/offline_page_model_unittest.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 e37720ea7dce7b08aa3a58641fc3e1f5c4319c22..45c9c44d1c535e73ee52aaf601408b8468315b78 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -29380,6 +29380,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="OfflinePages.ClearAllStatus" enum="OfflinePagesClearAllStatus">
+ <owner>jianli@chromium.org</owner>
+ <summary>Status code of wiping out the offline page data.</summary>
+</histogram>
+
<histogram name="OfflinePages.DeletePage.FreeSpaceMB" units="MB">
<owner>jianli@chromium.org</owner>
<summary>
@@ -29402,7 +29407,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Result of removing an offline copy for a page.</summary>
</histogram>
+<histogram name="OfflinePages.LoadStatus" enum="OfflinePagesLoadStatus">
+ <owner>jianli@chromium.org</owner>
+ <summary>
+ Status code of loading from the offline pages metadata store.
+ </summary>
+</histogram>
+
<histogram name="OfflinePages.LoadSuccess" enum="BooleanSuccess">
+ <obsolete>
+ Deprecated 10/2015, and replaced by OfflinePages.LoadStatus.
+ </obsolete>
<owner>jianli@chromium.org</owner>
<summary>
Whether an attempt to load the offline pages metadata store was successful.
@@ -67409,6 +67424,12 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="Too few URLs, didn't flip tiles 1 and 4"/>
</enum>
+<enum name="OfflinePagesClearAllStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Store reset failed"/>
+ <int value="2" label="Store reload failed"/>
+</enum>
+
<enum name="OfflinePagesDeletePageResult" type="int">
<int value="0" label="Success"/>
<int value="1" label="Cancelled"/>
@@ -67417,6 +67438,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="4" label="Not found"/>
</enum>
+<enum name="OfflinePagesLoadStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Store init failed"/>
+ <int value="2" label="Store load failed"/>
+ <int value="3" label="Data parsing failed"/>
+</enum>
+
<enum name="OfflinePagesSavePageResult" type="int">
<int value="0" label="Success"/>
<int value="1" label="Cancelled"/>
« no previous file with comments | « components/offline_pages/offline_page_model_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698