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

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

Issue 329723006: Determine prevalence of cache-control: no-store in main frame resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enum for histogram Created 6 years, 6 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 | « net/http/http_cache_transaction.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 2e6cfb6d90c76cc3f15a908200ad9ee9e54e7c7a..c4567041e13ff668a165fe047ea04d5aeebf3441 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -13516,6 +13516,18 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.MainFrameNoStore" enum="MainFrameStorable">
+ <owner>jkarlin@chromium.org</owner>
+ <summary>
+ The distribution of storable vs &quot;cache-control: no-store&quot;
+ main-frame resources.
+
+ Counted after response headers have completed and before the content has
+ completed. Redirects are counted. All HTTP cache transactions are counted,
+ not just those that require the network.
+ </summary>
+</histogram>
+
<histogram name="Net.MTPR_GetProxyForUrl_Thread_Wait_Time" units="milliseconds">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<summary>
@@ -38680,6 +38692,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="5" label="OTHER_DEVELOPER">Other Dev</int>
</enum>
+<enum name="MainFrameStorable" type="int">
+ <int value="0" label="Storable"/>
+ <int value="1" label="cache-control: no-store"/>
+</enum>
+
<enum name="ManagedUserPasswordChange" type="int">
<int value="0" label="OK_MANAGER">Changed in manager session</int>
<int value="1" label="OK_MANGED">Changed in supervised user session</int>
« no previous file with comments | « net/http/http_cache_transaction.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698