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

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

Issue 508823009: Mark SHA-1 as deprecated (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cert_verify_result_sha1
Patch Set: Slight tweak to allow levels of errors Created 6 years, 3 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/cert/cert_verify_proc_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 048811d87ff7e1aa9871a4afff3b618c66e4814d..c6cf1219e122970a7baca72dc999114b7aa6b084 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -14533,6 +14533,22 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.Certificate.SHA1.MainFrame" enum="SHA1Status">
+ <owner>rsleevi@chromium.org</owner>
+ <summary>
+ Whether or not SHA-1 was present in a resource fetched for the main frame,
+ and if so, what its maximum validity period was.
+ </summary>
+</histogram>
+
+<histogram name="Net.Certificate.SHA1.Subresource" enum="SHA1Status">
+ <owner>rsleevi@chromium.org</owner>
+ <summary>
+ Whether or not SHA-1 was present in a subresource fetch, and if so, what its
+ maximum validity period was.
+ </summary>
+</histogram>
+
<histogram name="Net.CertificatePinSuccess" enum="BooleanSuccess">
<obsolete>
Renamed to Net.PublicKeyPinSuccess 28 Oct 2011.
@@ -50589,6 +50605,18 @@ To add a new entry, add it with any value and run test to compute valid value.
</int>
</enum>
+<enum name="SHA1Status" type="int">
+ <summary>
+ Whether or not SHA-1 was present in a certificate chain and, if it was, when
+ the leaf certificate expired.
+ </summary>
+ <int value="0" label="Not present"/>
+ <int value="1" label="Expires after Jan 1, 2017"/>
+ <int value="2" label="Expires between Jun 1, 2016 and Jan 1, 2017"/>
+ <int value="3" label="Expires between Jan 1, 2016 and Jun 1, 2016"/>
+ <int value="4" label="Expires before Jan 1, 2016"/>
+</enum>
+
<enum name="ShelfAlignmentValue" type="int">
<summary>
The alignment of the shelf area (see ash/launcher/launcher_view.cc).
« no previous file with comments | « net/cert/cert_verify_proc_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698