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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1173343009: LevelDB storage for data reduction proxy to store data usage stats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove wrong const Created 5 years, 5 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/data_reduction_proxy/proto/data_store.proto ('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 8048c513b4a3942e22efba3172ec4b2047efe7f5..488adf223ba0ebe265388a7a5a04851c387d0448 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -4803,6 +4803,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="DataReductionProxy.LevelDBOpenStatus"
+ enum="DataReductionProxyStoreStatus">
+ <owner>kundaji@chromium.org</owner>
+ <summary>Status of calling Open() on Data Reduction Proxy LevelDB.</summary>
+</histogram>
+
<histogram name="DataReductionProxy.LoFi.ImplicitOptOutAction"
enum="DataReductionProxyLoFiImplicitOptOutAction">
<owner>bengr@chromium.org</owner>
@@ -52412,6 +52418,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="2" label="Proxy available and enabled"/>
</enum>
+<enum name="DataReductionProxyStoreStatus" type="int">
+ <int value="0" label="OK"/>
+ <int value="1" label="NOT_FOUND"/>
+ <int value="2" label="CORRUPTED"/>
+ <int value="3" label="IO_ERROR"/>
+ <int value="4" label="MISC_ERROR"/>
+</enum>
+
<enum name="DataReductionProxyUIAction" type="int">
<int value="0" label="Enabled directly from the promo"/>
<int value="1" label="Enabled then disabled from promo (iOS-only)"/>
« no previous file with comments | « components/data_reduction_proxy/proto/data_store.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698