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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 618063004: Mark SHA-1 as deprecated (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2171
Patch Set: Created 6 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
« 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 f8bf91ff5578043b45991f44a37d0caae7858097..1dc6c314a8228364995cd78eedcae0e07198315e 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -14546,6 +14546,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.
@@ -50607,6 +50623,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