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

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

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: Fix tests Created 5 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index ca7449522351a5354ad4cf284b1893d2c6cc58fc..663e092531c884d3f27b9ac7b907ad28388403a4 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -29348,6 +29348,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>
@@ -29370,7 +29375,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.
@@ -67365,6 +67380,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"/>
@@ -67373,6 +67394,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"/>

Powered by Google App Engine
This is Rietveld 408576698